mirror of
https://github.com/MikroWizard/docker-compose-deployment.git
synced 2025-06-20 18:05:38 +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!
9 lines
306 B
Bash
9 lines
306 B
Bash
MW_DB_NAME=mikrowizard_db
|
|
MW_DB_USER=mikrowizard_user
|
|
MW_DB_PASSWORD=securepassword
|
|
MW_SERVER_IP=127.0.0.1
|
|
MW_RAD_SECRET=your_rad_secret
|
|
MW_encryptKey=bN0PJaVMpV7e4NGE8cLF3FECgY_nofYDuBtlLxX7pWg=
|
|
CONF_PATH=/opt/mikrowizard/conf
|
|
FIRMWARE_PATH=/opt/mikrowizard/firmware
|
|
BACKUPS_PATH=/opt/mikrowizard/backups
|