2e9026f9ea
* feat(frontend): 💄 add recipe title * fix(frontend): 🐛 fixes #722 side-bar issue * feat(frontend): ✨ Add page titles to all pages * minor cleanup * refactor(backend): ♻️ rewrite scheduler to be more modulare and work * feat(frontend): ✨ start password reset functionality * refactor(backend): ♻️ refactor application settings to facilitate dependency injection * refactor(backend): 🔥 remove RECIPE_SETTINGS env variables in favor of group settings * formatting * refactor(backend): ♻️ align naming convention * feat(backend): ✨ password reset * test(backend): ✅ password reset * feat(frontend): ✨ self-service password reset * purge password schedule * update user creation for tests Co-authored-by: Hayden <hay-kot@pm.me>
34 lines
795 B
Bash
34 lines
795 B
Bash
# The Default Group Assigned to All Users
|
|
DEFAULT_GROUP=Home
|
|
|
|
# The Default Credentials for the Super User
|
|
DEFAULT_EMAIL=changeme@email.com
|
|
DEFAULT_PASSWORD=MyPassword
|
|
|
|
# Determines Production Mode, This will set the directory path to use for data storage
|
|
PRODUCTION=False
|
|
|
|
# API Port for Python Server
|
|
API_PORT=9000
|
|
|
|
# Exposes /docs and /redoc on the server
|
|
API_DOCS=True
|
|
|
|
# Sets the Database type to use. Note that in order for Postgres URI to be created, you must set DB_ENGINE=postgres
|
|
DB_ENGINE=sqlite # Optional: 'sqlite', 'postgres'
|
|
POSTGRES_USER=mealie
|
|
POSTGRES_PASSWORD=mealie
|
|
POSTGRES_SERVER=postgres
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_DB=mealie
|
|
TOKEN_TIME=24
|
|
|
|
# NOT USED
|
|
# SMTP_HOST=""
|
|
# SMTP_PORT=""
|
|
# SMTP_FROM_NAME=""
|
|
# SMTP_TLS=""
|
|
# SMTP_FROM_EMAIL=""
|
|
# SMTP_USER=""
|
|
# SMTP_PASSWORD=""
|
|
|