mirror of
https://github.com/MikroWizard/docker-compose-deployment.git
synced 2025-08-04 10:14:35 +02:00
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!
17 lines
649 B
JSON
17 lines
649 B
JSON
{
|
|
"name": "python server config template - rename me",
|
|
"PYSRV_IS_PRODUCTION": "1",
|
|
"PYSRV_DATABASE_HOST": "127.0.0.1",
|
|
"PYSRV_DATABASE_HOST_POSTGRESQL": "127.0.0.1",
|
|
"PYSRV_DATABASE_PORT": "5432",
|
|
"PYSRV_DATABASE_NAME": "mikrowizard_db",
|
|
"PYSRV_DATABASE_USER": "mikrowizard_user",
|
|
"PYSRV_DATABASE_PASSWORD": "securepassword",
|
|
"PYSRV_CRYPT_KEY": "bN0PJaVMpV7e4NGE8cLF3FECgY_nofYDuBtlLxX7pWg=",
|
|
"PYSRV_BACKUP_FOLDER":"/backups/",
|
|
"PYSRV_FIRM_FOLDER":"/firms/",
|
|
"PYSRV_COOKIE_HTTPS_ONLY": false,
|
|
"PYSRV_REDIS_HOST": "127.0.0.1:6379",
|
|
"PYSRV_DOMAIN_NAME": "",
|
|
"PYSRV_CORS_ALLOW_ORIGIN": "*"
|
|
}
|