delete from repo
This commit is contained in:
16
.env.docker
16
.env.docker
@@ -1,16 +0,0 @@
|
|||||||
# Domain configuration
|
|
||||||
DOMAIN=localhost
|
|
||||||
|
|
||||||
# SSL/TLS configuration for Let's Encrypt
|
|
||||||
ACME_EMAIL=admin@example.com
|
|
||||||
|
|
||||||
# Traefik dashboard authentication (admin:password)
|
|
||||||
# Generated with: htpasswd -nb admin password
|
|
||||||
TRAEFIK_AUTH=admin:$$2y$$10$$8qCUOc.FKLB8o4X8ZGVb7OU4xrslBUjOdBPtRz9wM7YJ9.XsGVzui
|
|
||||||
|
|
||||||
# Application environment
|
|
||||||
NODE_ENV=production
|
|
||||||
PORT=3000
|
|
||||||
|
|
||||||
# Docker Compose optimization
|
|
||||||
COMPOSE_BAKE=true
|
|
||||||
22
.env.docker.example
Normal file
22
.env.docker.example
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# Production Environment Variables
|
||||||
|
NODE_ENV=production
|
||||||
|
PORT=3000
|
||||||
|
|
||||||
|
# Database Configuration
|
||||||
|
POSTGRES_DB=quixotic
|
||||||
|
POSTGRES_USER=quixotic
|
||||||
|
POSTGRES_PASSWORD=your_secure_postgres_password_here
|
||||||
|
|
||||||
|
# Domain and SSL Configuration
|
||||||
|
DOMAIN=your-domain.com
|
||||||
|
ACME_EMAIL=your-email@domain.com
|
||||||
|
|
||||||
|
# Traefik Dashboard Authentication (admin:password by default)
|
||||||
|
TRAEFIK_AUTH=admin:$2y$10$8qCUOc.FKLB8o4X8ZGVb7OU4xrslBUjOdBPtRz9wM7YJ9.XsGVzui
|
||||||
|
|
||||||
|
# Telegram Bot Configuration
|
||||||
|
TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
|
||||||
|
WEB_APP_URL=https://your-domain.com
|
||||||
|
|
||||||
|
# Optional: Additional database settings
|
||||||
|
DATABASE_URL=postgresql://quixotic:your_secure_postgres_password_here@postgres:5432/quixotic
|
||||||
Reference in New Issue
Block a user