mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-03 20:12:58 +00:00
1e377a01b0
Remove all references to DragonflyDB from the codebase, environment templates, and documentation following its removal from the service architecture. This includes cleaning up Docker configurations, CI/CD workflows, and production guides. - **Cleanup**: Deleted `dragonfly.conf` and removed DragonflyDB service from `docker-compose.yml`. - **Environment**: Removed `DRAGONFLY_PASSWORD` and `DRAGONFLY_ADDR` from `.env.example` and `docker-entrypoint.sh`. - **Documentation**: Updated `README.md`, `PRODUCTION_DEPLOYMENT.md`, and `QUICK_START_PRODUCTION.md` to reflect a 2-service architecture (Trackeep + Postgres). - **CI/CD**: Updated GitHub Actions to use Go 1.25. - **Testing**: Updated `test-production.sh` to remove DragonflyDB variable validation.
14 lines
377 B
Bash
14 lines
377 B
Bash
# Trackeep Configuration for Casa OS
|
|
# Only required variables - everything else is auto-configured
|
|
|
|
# Host port for the application (default: 8080)
|
|
HOST_PORT=8080
|
|
|
|
# Database Configuration
|
|
DB_PASSWORD=your_secure_password_here
|
|
DB_USER=trackeep
|
|
DB_NAME=trackeep
|
|
|
|
# JWT Secret (generate with: openssl rand -hex 32)
|
|
JWT_SECRET=your_jwt_secret_here_64_hex_characters_long_exactly
|