10 lines
294 B
Python
10 lines
294 B
Python
from horilla import settings
|
|
|
|
"""
|
|
DB_INIT_PASSWORD: str
|
|
|
|
The password used for database setup and initialization. This password is a
|
|
48-character alphanumeric string generated using a UUID to ensure high entropy and security.
|
|
"""
|
|
DB_INIT_PASSWORD = "<add your db initialisation password here>"
|