- Update docker-compose files for dev, local, and prod environments - Improve service definitions and environment variable handling - Add Unraid-specific Docker Compose and environment files - Remove deprecated .env.example and dockercomposeforserver.yml - Streamline configuration management across environments
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
# Unraid Environment Configuration
|
|
# ===========================================
|
|
# General
|
|
# ===========================================
|
|
MODE="PRODUCTION"
|
|
PYTHONUNBUFFERED=1
|
|
PYTHONFAULTHANDLER=1
|
|
|
|
# ===========================================
|
|
# URLs
|
|
# ===========================================
|
|
# Pointing to the backend office API
|
|
VITE_BASE_URL="http://192.168.1.204:9510"
|
|
VITE_MONEY_URL="http://192.168.1.204:9513"
|
|
VITE_AUTO_URL="http://192.168.1.204:9514"
|
|
VITE_SERVICE_URL="http://192.168.1.204:9515"
|
|
VITE_AUTHORIZE_URL="http://192.168.1.204:9516"
|
|
VITE_ADDRESS_CHECKER_URL="http://192.168.1.204:9518"
|
|
|
|
# ===========================================
|
|
# Database Credentials
|
|
# ===========================================
|
|
# POSTGRES_SERVER is set to your Unraid IP
|
|
POSTGRES_USERNAME=postgres
|
|
POSTGRES_PW=password
|
|
POSTGRES_SERVER=192.168.1.204
|
|
POSTGRES_DBNAME=auburnoil
|
|
|
|
# ===========================================
|
|
# Authorize.net
|
|
# ===========================================
|
|
# Production credentials found in eamco_deploy/.env
|
|
AUTHORIZE_API_LOGIN_ID=4d2Mn6H23R
|
|
AUTHORIZE_TRANSACTION_KEY=7B94d8xfTQXv37WS
|
|
|
|
# ===========================================
|
|
# VoIP.ms
|
|
# ===========================================
|
|
# Credentials found in eamco_voipms/.env
|
|
VOIPMS_API_USERNAME=eddwinn@gmail.com
|
|
VOIPMS_API_PASSWORD=!Gofionago123catdog
|
|
TARGET_DID=5084268800
|
|
TARGET_SIP_ACCOUNT=407323_auburnoil@washington2.voip.ms
|
|
TARGET_CELLPHONE_1=7743342638
|
|
TARGET_CELLPHONE_2=9143306100
|
|
|
|
# ===========================================
|
|
# Flask Secret Key
|
|
# ===========================================
|
|
# Generated for this deployment
|
|
SECRET_KEY=174ac9a094b957fdb8081c334439f92523c1b4887b59c63d92e4b6c33354445f
|