cuatrolabs-tracker-ms / .env.example
Michael-Antony's picture
Check in service
82fcb44
raw
history blame contribute delete
766 Bytes
APP_NAME=Tracker Microservice
APP_VERSION=1.0.0
DEBUG=false
LOG_LEVEL=INFO
PORT=8003
ROOT_PATH=
# MongoDB Configuration
MONGODB_URI=mongodb+srv://username:password@cluster0.2shrc.mongodb.net/?retryWrites=true&w=majority
MONGODB_DB_NAME=cuatrolabs
# PostgreSQL Configuration
DB_PROTOCOL=postgresql+asyncpg
DB_USER=postgres
DB_PASSWORD=your-db-password
DB_HOST=localhost
DB_PORT=5432
DB_NAME=cuatrolabs
DB_MIN_POOL_SIZE=5
DB_MAX_POOL_SIZE=20
DB_SSLMODE=disable
DATABASE_URL=postgresql+asyncpg://postgres:your-db-password@localhost:5432/cuatrolabs
# JWT Configuration
SECRET_KEY=your-secret-key-here-change-in-production
ALGORITHM=HS256
TOKEN_EXPIRATION_HOURS=8
# CORS Settings
CORS_ORIGINS=["http://localhost:3000","http://localhost:8000","http://localhost:8003"]