From 989f7f2690708f2ec7e31e1e436ce4a161fce486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Grela?= Date: Wed, 17 Dec 2025 14:52:00 +0100 Subject: [PATCH] fix: exclude chat files fro api-microservice template --- copier.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/copier.yaml b/copier.yaml index 242e005..8338bec 100644 --- a/copier.yaml +++ b/copier.yaml @@ -95,6 +95,11 @@ _exclude: - "{{ 'app/services' if project_type != 'api-microservice' else '' }}" - "{{ 'app/repositories' if project_type != 'api-microservice' else '' }}" - "{{ 'app/api/routes/v1/user.py' if project_type != 'api-microservice' else '' }}" + - "{{ 'app/schemas/chat.py' if project_type == 'api-microservice' else '' }}" + - "{{ 'app/schemas/agent.py' if project_type == 'api-microservice' else '' }}" + - "{{ 'app/schemas/message.py' if project_type == 'api-microservice' else '' }}" + - "{{ 'app/schemas/deps.py' if project_type == 'api-microservice' else '' }}" + - "{{ 'app/api/routes/v1/chat.py' if project_type == 'api-microservice' else '' }}" - "{{ 'app/api' if project_type not in ['api-microservice', 'agent'] else '' }}" - "{{ 'app/models' if project_type not in ['api-microservice', 'agent'] else '' }}"