ec2ab0e9f4
Adds Dockerfile, docker-compose files, and deployment scripts for containerizing the React/Express app. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 3a22ac80-cd1d-4441-9e36-f24fc2f4c3de Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3478f7c3-db8c-4fca-9165-3adbdf1b5829/e8da43e7-d99c-4328-9fdc-485bdeecffc1.jpg
19 lines
460 B
Bash
19 lines
460 B
Bash
# Database Configuration
|
|
DATABASE_URL=postgresql://username:password@localhost:5432/dj_management
|
|
|
|
# Authentication
|
|
SESSION_SECRET=your-super-secret-session-key-here-minimum-32-characters-long
|
|
REPLIT_DOMAINS=localhost,yourdomain.com
|
|
REPL_ID=your-repl-id
|
|
ISSUER_URL=https://replit.com/oidc
|
|
|
|
# Application
|
|
NODE_ENV=development
|
|
PORT=5000
|
|
|
|
# PostgreSQL Database (for Docker)
|
|
PGHOST=localhost
|
|
PGPORT=5432
|
|
PGUSER=postgres
|
|
PGPASSWORD=postgres
|
|
PGDATABASE=dj_management |