- 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>
14 lines
361 B
Text
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
|