Rustelo/templates/basic/.env.example
Jesús Pérez 0aeaa33d9a
Some checks failed
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Security Audit (push) Has been cancelled
CI/CD Pipeline / Build Docker Image (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Performance Benchmarks (push) Has been cancelled
CI/CD Pipeline / Cleanup (push) Has been cancelled
chore: update gitignore and fix content
2026-02-08 20:09:38 +00:00

34 lines
809 B
Plaintext

# Environment Variables for jpl-website
# Copy this file to .env and fill in your values
# Application Settings
SECRET_KEY=your-secret-key-here-change-in-production
RUST_LOG=info
# Database Settings
# For SQLite (development)
DATABASE_URL=sqlite:data/dev_database.db
# For PostgreSQL (production)
# DATABASE_URL=postgresql://username:password@localhost/jpl-website_db
# Server Settings
LEPTOS_SITE_ADDR=127.0.0.1:3030
LEPTOS_SITE_ROOT=/
LEPTOS_SITE_PKG_DIR=pkg
LEPTOS_SITE_NAME=jpl-website
# Feature Flags
RUSTELO_AUTH_ENABLED=false
RUSTELO_EMAIL_ENABLED=false
RUSTELO_METRICS_ENABLED=true
RUSTELO_TLS_ENABLED=false
# Development Settings
RUSTELO_DEV_MODE=true
RUSTELO_HOT_RELOAD=true
# Asset Settings
RUSTELO_STATIC_DIR=public
RUSTELO_UPLOAD_DIR=uploads
RUSTELO_MAX_FILE_SIZE=10485760 # 10MB in bytes