# AR Electronics License Server — environment variables # Copy this file to .env and fill in values before starting the server. # Database — SQLite (default) or PostgreSQL DATABASE_URL=sqlite:///./ar_licenses.db # DATABASE_URL=postgresql://user:password@localhost:5432/ar_licenses # Admin API key — change this to a strong random value in production! # Generate one: python -c "import secrets; print(secrets.token_urlsafe(32))" ADMIN_API_KEY=change-me-in-production