FreedomBox/cfg.sample.py
2012-03-12 23:02:05 -05:00

24 lines
586 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")
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")
santiago = os.path.join(data_dir, "santiago.sqlite3")
product_name = "Plinth"
box_name = "FreedomBox"
port = 8000
## Do not edit below this line ##
html_root = None
main_menu = Menu()
base_href = ""