localspot/.env.example
Kevin Sivic 2025c87a8c
All checks were successful
CI - Test, Build, and Push / test (push) Successful in 2m45s
CI - Test, Build, and Push / build-and-push (push) Successful in 11s
Add docker-compose for production deployment
- Add docker-compose.yml with app and postgres services
- Add .env.example with required environment variables
- Add .env to .gitignore to prevent committing secrets

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-01 14:03:20 -05:00

14 lines
361 B
Text

# LocalSpot Environment Configuration
# Copy this file to .env and update the values
# Required: Generate with `mix phx.gen.secret`
SECRET_KEY_BASE=
# Database configuration
DATABASE_URL=postgres://postgres:postgres@db:5432/localspot
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=localspot
# Application host (your domain)
PHX_HOST=localhost