mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
17 lines
429 B
Python
17 lines
429 B
Python
from menu import Menu
|
|
import os
|
|
|
|
file_root = os.path.dirname(os.path.realpath(__file__))
|
|
data_dir = os.path.join(file_root, "data")
|
|
store_file = os.path.join(data_dir, "store.sqlite3")
|
|
status_log_file = os.path.join(data_dir, "status.log")
|
|
access_log_file = os.path.join(data_dir, "access.log")
|
|
users_dir = os.path.join(data_dir, "users")
|
|
|
|
product_name = "Plinth"
|
|
box_name = "Freedom Plug"
|
|
|
|
html_root = None
|
|
main_menu = Menu()
|
|
|