From ca48b338bc301997512e125c229d8634ce682738 Mon Sep 17 00:00:00 2001 From: Andrey Kondratev <81143241+cockroach-eater@users.noreply.github.com> Date: Fri, 29 Aug 2025 09:51:46 +0500 Subject: [PATCH] delete from repo --- .env.docker | 16 ---------------- .env.docker.example | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 16 deletions(-) delete mode 100644 .env.docker create mode 100644 .env.docker.example diff --git a/.env.docker b/.env.docker deleted file mode 100644 index fa67d22..0000000 --- a/.env.docker +++ /dev/null @@ -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 \ No newline at end of file diff --git a/.env.docker.example b/.env.docker.example new file mode 100644 index 0000000..d065f29 --- /dev/null +++ b/.env.docker.example @@ -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 \ No newline at end of file