delete from repo

This commit is contained in:
Andrey Kondratev
2025-08-29 09:51:46 +05:00
parent 52b5552613
commit ca48b338bc
2 changed files with 22 additions and 16 deletions

View File

@@ -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
View 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