Some checks failed
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Security Audit (push) Has been cancelled
CI/CD Pipeline / Performance Benchmarks (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (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 / Cleanup (push) Has been cancelled
32 lines
755 B
Plaintext
32 lines
755 B
Plaintext
# Development Environment Variables for jpl-website
|
|
# This file contains development-specific settings
|
|
|
|
# Application Settings
|
|
SECRET_KEY=dev-secret-key-change-in-production
|
|
RUST_LOG=debug
|
|
|
|
# Database Settings (SQLite for development)
|
|
DATABASE_URL=sqlite:data/dev_database.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
|
|
RUSTELO_DEBUG_MODE=true
|
|
|
|
# Asset Settings
|
|
RUSTELO_STATIC_DIR=public
|
|
RUSTELO_UPLOAD_DIR=uploads
|
|
RUSTELO_MAX_FILE_SIZE=52428800 # 50MB in bytes for development
|