# =============================================================================
# NetForge Local Development Environment
# =============================================================================
# This file is for local development only. Do NOT commit to version control.

# DATABASE_URL is used by the app inside Docker (app -> db service)
DATABASE_URL=postgresql://netforge:netforge_dev@db:5432/netforge_dev

# DATABASE_URL_LOCAL is used when running Prisma CLI from host machine
# e.g., npx prisma db push, npx prisma studio, npx prisma generate
DATABASE_URL_LOCAL=postgresql://netforge:netforge_dev@localhost:5432/netforge_dev

# Redis (inside Docker)
REDIS_URL=redis://redis:6379

# Redis (from host)
REDIS_URL_LOCAL=redis://localhost:6379

# Auth
NEXTAUTH_SECRET=dev-secret-change-in-production
NEXTAUTH_URL=http://localhost:3000

# App
NODE_ENV=development
