29 lines
635 B
Docker
29 lines
635 B
Docker
# Docker Environment Configuration
|
|
# Copy this file to .env before running docker-compose
|
|
|
|
# Application Settings
|
|
TZ=UTC
|
|
PORT=3333
|
|
LOG_LEVEL=info
|
|
NODE_ENV=production
|
|
SESSION_DRIVER=cookie
|
|
|
|
# Security - REQUIRED: Generate a secure APP_KEY
|
|
# Run: node ace generate:key
|
|
# Or generate a random 32-character string
|
|
APP_KEY=yECfcbOIfHA0nFEdYdj-1ixOIwC0jExoz
|
|
|
|
# Database Configuration
|
|
DB_HOST=postgres
|
|
DB_PORT=5432
|
|
DB_USER=postgres
|
|
DB_PASSWORD=postgres
|
|
DB_DATABASE=parser_zakupok
|
|
|
|
# Telegram Bot - REQUIRED
|
|
# Get token from @BotFather on Telegram
|
|
TELEGRAM_BOT_TOKEN=your_bot_token_here
|
|
|
|
# Target Website
|
|
ICETRADE_BASE_URL=https://icetrade.by
|