39 lines
903 B
Python
39 lines
903 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 = "d3f6a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d"
|
|
|
|
|
|
HORILLA_DATE_FORMATS = {
|
|
"DD-MM-YYYY": "%d-%m-%Y",
|
|
"DD.MM.YYYY": "%d.%m.%Y",
|
|
"DD/MM/YYYY": "%d/%m/%Y",
|
|
"MM/DD/YYYY": "%m/%d/%Y",
|
|
"YYYY-MM-DD": "%Y-%m-%d",
|
|
"YYYY/MM/DD": "%Y/%m/%d",
|
|
"MMMM D, YYYY": "%B %d, %Y",
|
|
"DD MMMM, YYYY": "%d %B, %Y",
|
|
"MMM. D, YYYY": "%b. %d, %Y",
|
|
"D MMM. YYYY": "%d %b. %Y",
|
|
"dddd, MMMM D, YYYY": "%A, %B %d, %Y",
|
|
}
|
|
|
|
HORILLA_TIME_FORMATS = {
|
|
"hh:mm A": "%I:%M %p", # 12-hour format
|
|
"HH:mm": "%H:%M", # 24-hour format
|
|
}
|
|
|
|
BIO_DEVICE_THREADS = {}
|
|
|
|
DYNAMIC_URL_PATTERNS = []
|
|
|
|
APP_URLS = [
|
|
"base.urls",
|
|
"employee.urls",
|
|
]
|