mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-09 03:04:54 -04:00
Fix about page (#563)
* Fix error 500 in about page * Fix log details not showing
This commit is contained in:
parent
8607b9891b
commit
9d64345321
@ -13,7 +13,7 @@ export const metaAPI = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async getLogText(num) {
|
async getLogText(num) {
|
||||||
const response = await apiReq.get(API_ROUTES.debugLog(num));
|
const response = await apiReq.get(API_ROUTES.debugLogNum(num));
|
||||||
return response.data;
|
return response.data;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ class AppSettings(BaseSettings):
|
|||||||
|
|
||||||
SECRET: str = determine_secrets(DATA_DIR, PRODUCTION)
|
SECRET: str = determine_secrets(DATA_DIR, PRODUCTION)
|
||||||
|
|
||||||
DB_ENGINE: Optional[str] = None # Optional: 'sqlite', 'postgres'
|
DB_ENGINE: str = "sqlite" # Optional: 'sqlite', 'postgres'
|
||||||
POSTGRES_USER: str = "mealie"
|
POSTGRES_USER: str = "mealie"
|
||||||
POSTGRES_PASSWORD: str = "mealie"
|
POSTGRES_PASSWORD: str = "mealie"
|
||||||
POSTGRES_SERVER: str = "postgres"
|
POSTGRES_SERVER: str = "postgres"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user