update docker

This commit is contained in:
2026-03-31 21:26:01 +03:30
parent 9cf9209daa
commit c02e7afca1
6 changed files with 193 additions and 255 deletions
+15 -20
View File
@@ -1,24 +1,19 @@
# Server Configuration
NODE_ENV=development
PORT=5002
# Database Configuration
DB_HOST=localhost
DB_PORT=3306
DB_NAME=consumer_db
DB_USER=consumer_user
DB_PASSWORD=consumer_password
DB_ROOT_PASSWORD=root_password
DATABASE_URL=mysql://consumer_user:consumer_password@localhost:3306/consumer_db
SHADOW_DATABASE_URL=mysql://consumer_user:consumer_password@localhost:3306/consumer_db_shadow
DATABASE_NAME="psp"
DATABASE_PASSWORD="psp"
DATABASE_USER="psp"
DATABASE_PORT="3306"
DATABASE_HOST="database"
# JWT Configuration
JWT_SECRET=your_super_secret_jwt_key_change_this_in_production
JWT_EXPIRATION=604800
DATABASE_URL="mysql://psp:psp@database:3306/psp"
SHADOW_DATABASE_URL="mysql://psp:psp@database:3306/psp_sh"
JWT_SECRET="Pos_Sec_J"
JWT_EXPIRES_IN="604800"
OTP_STATIC_CODE="12345"
PORT="5002"
DB_ROOT_PASSWORD="root_password"
NODE_ENV="production"
# CORS Configuration
CORS_ORIGINS=http://localhost:5000,http://127.0.0.1:5000
# File Upload Configuration
UPLOAD_PATH=./uploads
MAX_FILE_SIZE=10485760