summaryrefslogtreecommitdiff
path: root/cfg.sample.py
blob: 2c8a8adf16b1bd30e3b35254358e0eda00ed11c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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")
user_db = os.path.join(data_dir, "users")
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"

port = 8000

## Do not edit below this line ##
html_root = None
main_menu = Menu()
base_href = ""