# PostgreSQL connection string for the `airwaves` database
# Example:
# DATABASE_URL="postgresql://postgres:password@localhost:5432/airwaves?schema=public"
# MySQL (XAMPP) connection string for the `airwaves` database
# Default XAMPP MySQL user is usually `root` with empty password. Port in this machine appears to be `3307`.
DATABASE_URL="mysql://root:@localhost:3307/airwaves"

# JWT signing secret (change in production)
JWT_SECRET="change-me"

# API port
PORT=3001

# Frontend origin allowed by CORS
FRONTEND_URL="https://airwaves.g5s.net"
