CoolFace
Apppublic

tokyo-boy/inventory-backend

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
.env.example58 linesDownload Raw Back to backend
1# ==========================================2# Application3# ==========================================4 5APP_NAME=Inventory Order Management API6APP_ENV=development7DEBUG=true8 9# ==========================================10# Server11# ==========================================12 13HOST=0.0.0.014PORT=800015 16# ==========================================17# Database18# ==========================================19 20POSTGRES_SERVER=postgres21POSTGRES_PORT=543222POSTGRES_DB=inventory_db23POSTGRES_USER=inventory_user24POSTGRES_PASSWORD=inventory_password25 26DATABASE_URL=postgresql+psycopg2://inventory_user:inventory_password@postgres:5432/inventory_db27 28# ==========================================29# CORS30# ==========================================31 32CORS_ORIGINS=http://localhost:5173,http://localhost:300033 34# ==========================================35# Pagination36# ==========================================37 38DEFAULT_PAGE_SIZE=1039MAX_PAGE_SIZE=10040 41# ==========================================42# Inventory Settings43# ==========================================44 45LOW_STOCK_THRESHOLD=1046 47FRONTEND_URL=http://localhost:517348CORS_ORIGINS=http://localhost:5173,http://127.0.0.1:517349 50# Hugging Face Spaces only.51SEED_DATABASE=true52 53# ==========================================54# Logging55# ==========================================56 57LOG_LEVEL=INFO58