_main
Settings
¶
Bases: BaseSettings
Contains the general configuration variables for Fractal Server.
| ATTRIBUTE | DESCRIPTION |
|---|---|
JWT_EXPIRE_SECONDS |
JWT token lifetime, in seconds.
TYPE:
|
JWT_SECRET_KEY |
JWT secret.
TYPE:
|
COOKIE_EXPIRE_SECONDS |
Cookie token lifetime, in seconds.
TYPE:
|
FRACTAL_RUNNER_BACKEND |
Select which runner backend to use.
TYPE:
|
FRACTAL_LOGGING_LEVEL |
Logging-level threshold for logging Only logs of with this level (or higher) will appear in the console logs.
TYPE:
|
FRACTAL_API_MAX_JOB_LIST_LENGTH |
Number of ids that can be stored in the
TYPE:
|
FRACTAL_GRACEFUL_SHUTDOWN_TIME |
Waiting time for the shutdown phase of executors, in seconds.
TYPE:
|
FRACTAL_HELP_URL |
The URL of an instance-specific Fractal help page.
TYPE:
|
FRACTAL_DEFAULT_GROUP_NAME |
Name of the default user group. If set to
TYPE:
|
Source code in fractal_server/config/_main.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | |