MikroWizard.docker-compose-.../mikroman/server-conf.json.template
sepehr a8f029ee38 feat: Initial commit 🎉
Set up the foundational structure for the MikroWizard deployment repository, including:
- Docker Compose configuration for MikroFront, MikroMan, PostgreSQL, and Redis Stack.
- `prepare.sh` script for host environment preparation.
- Database initialization script (`init-db.sql`).
- `.env` template for centralized configuration.

This commit marks the beginning of a streamlined deployment process for MikroWizard!
2024-12-16 13:45:30 +03:00

14 lines
467 B
Text

{
"name": "python server config template - rename me",
"PYSRV_IS_PRODUCTION": "1",
"PYSRV_DATABASE_HOST": "127.0.0.1",
"PYSRV_DATABASE_PORT": "5432",
"PYSRV_DATABASE_NAME": "${MW_DB_NAME}",
"PYSRV_DATABASE_USER": "${MW_DB_USER}",
"PYSRV_DATABASE_PASSWORD": "${MW_DB_PASSWORD}",
"PYSRV_CRYPT_KEY": "${MW_encryptKey}",
"PYSRV_COOKIE_HTTPS_ONLY": false,
"PYSRV_REDIS_HOST": "127.0.0.1:6379",
"PYSRV_CORS_ALLOW_ORIGIN": "*"
}