# Server
PORT={{port}}
NODE_ENV=development

# Security
JWT_SECRET=your-super-secret-jwt-key
JWT_EXPIRES_IN=7d
CORS_ORIGIN=http://localhost:3000

{{#if includeDatabase}}
# Database
DATABASE_URL="postgresql://postgres:password@localhost:5432/{{appName}}"
{{/if}}

# Logging
LOG_LEVEL=info
LOG_FILE=logs/app.log

# Rate Limiting
RATE_LIMIT_WINDOW_MS=900000
RATE_LIMIT_MAX_REQUESTS=100

{{#if includeGraphQL}}
# GraphQL
GRAPHQL_PATH=/graphql
{{/if}}

{{#if includeSwagger}}
# Swagger
SWAGGER_PATH=/api-docs
{{/if}}