auth endpoints added

This commit is contained in:
2025-04-03 14:19:34 +03:00
parent 3583d178e9
commit ee405133be
37 changed files with 976 additions and 570 deletions

View File

@@ -50,11 +50,39 @@ services:
ports:
- "11222:6379"
template_service:
container_name: template_service
# template_service:
# container_name: template_service
# build:
# context: .
# 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
auth_service:
container_name: auth_service
build:
context: .
dockerfile: ApiServices/TemplateService/Dockerfile
dockerfile: ApiServices/AuthService/Dockerfile
networks:
- wag-services
env_file:
@@ -62,17 +90,17 @@ services:
environment:
- API_PATH=app:app
- API_HOST=0.0.0.0
- API_PORT=8000
- API_PORT=8001
- 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
- API_ACCESS_TOKEN_TAG=eys-acs-tkn
- API_APP_NAME=evyos-auth-api-gateway
- API_TITLE=WAG API Auth Api Gateway
- API_FORGOT_LINK=https://auth_service/forgot-password
- API_DESCRIPTION=This api is serves as web auth api gateway only to evyos web services.
- API_APP_URL=https://auth_service
ports:
- "8000:8000"
- "8001:8001"
depends_on:
- postgres-service
- mongo_service