api tested and completed

This commit is contained in:
2025-04-02 14:34:14 +03:00
parent 9e27893e8f
commit 27c48bb86a
30 changed files with 2695 additions and 24 deletions

View File

@@ -49,15 +49,43 @@ services:
ports:
- "11222:6379"
test_server:
container_name: test_server
template_service:
container_name: template_service
build:
context: .
dockerfile: ApiServices/Dockerfile
env_file:
- api_env.env
dockerfile: ApiServices/TemplateService/Dockerfile
networks:
- wag-services
env_file:
- api_env.env
environment:
- API_PATH=app:app
- API_HOST=0.0.0.0
- API_PORT=8000
- API_LOG_LEVEL=info
- API_RELOAD=1
- API_ACCESS_TOKEN_TAG=1
- API_APP_NAME=evyos-template-api-gateway
- API_TITLE=WAG API Template Api Gateway
- API_FORGOT_LINK=https://template_service/forgot-password
- API_DESCRIPTION=This api is serves as web template api gateway only to evyos web services.
- API_APP_URL=https://template_service
ports:
- "8000:8000"
depends_on:
- postgres-service
- mongo_service
- redis_service
# test_server:
# container_name: test_server
# build:
# context: .
# dockerfile: ApiServices/Dockerfile
# env_file:
# - api_env.env
# networks:
# - wag-services
networks:
wag-services: