mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-06 05:55:23 +02:00
Get Recipes Route Rewrite (#339)
* deprecate old route * auto-gen * recipe card infinite scroll * fix datatable * set hard-limit option * add loader * set scroll on navigation * add auto-import * fix slow initial load * remove console.logs Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
parent
80f8806604
commit
8e4b951ecc
19 changed files with 128 additions and 73 deletions
35
template.env
35
template.env
|
@ -1,11 +1,34 @@
|
|||
# Make .env in this folder if needed.
|
||||
# The Default Group Assigned to All Users
|
||||
DEFAULT_GROUP=Home
|
||||
PRODUCTION=False
|
||||
API_PORT=9000
|
||||
API_DOCS=True
|
||||
DB_TYPE=sqlite
|
||||
|
||||
# The Default Credentials for the Super User
|
||||
DEFAULT_EMAIL=changeme@email.com
|
||||
DEFAULT_PASSWORD=MyPassword
|
||||
TOKEN_TIME=2
|
||||
|
||||
# Determines Production Mode, This will set the directory path to use for data storage
|
||||
PRODUCTION=False
|
||||
|
||||
# API Port for Pythong Server
|
||||
API_PORT=9000
|
||||
|
||||
# Exposes /docs and /redoc on the server
|
||||
API_DOCS=True
|
||||
|
||||
# Sets the Database type to use. Currently the only supported options is 'sqlite'
|
||||
DB_TYPE=sqlite
|
||||
|
||||
# Sets the token expiration time in hours.
|
||||
TOKEN_TIME=24
|
||||
|
||||
# NOT USED
|
||||
SFTP_USERNAME=None
|
||||
SFTP_PASSWORD=None
|
||||
|
||||
# NOT USED Auto Import Options
|
||||
AUTO_IMPORT=True
|
||||
AUTO_IMPORT_RECIPES=True
|
||||
AUTO_IMPORT_SETTINGS=True
|
||||
AUTO_IMPORT_PAGES=True
|
||||
AUTO_IMPORT_THEMES=True
|
||||
AUTO_IMPORT_USERS=True
|
||||
AUTO_IMPORT_GROUPS=True
|
Loading…
Add table
Add a link
Reference in a new issue