1
0
mirror of https://github.com/Tygs/0bin.git synced 2023-08-10 21:13:00 +03:00
0bin/settings.py

44 lines
1.3 KiB
Python
Raw Normal View History

2012-04-24 22:15:38 +04:00
# -*- coding: utf-8 -*-
# import default settings value from src/default_settings.py
# you can refer to this file if you forgot what
# settings is for and what it is set to by default
# DO NOT ALTER THIS LINE
from src.default_settings import *
2012-04-24 22:15:38 +04:00
# debug will get you error message and auto reload
# don't set this to True in production
DEBUG = False
# absolute path where the paste files should be store
# default in projectdirectory/static/content/
# use "/" even under Windows
2012-04-29 01:51:54 +04:00
PASTE_FILES_ROOT = os.path.join(STATIC_FILES_ROOT, 'content')
2012-05-01 16:21:21 +04:00
# Port and host the embeded python server should be using
# You can also specify them using the --host and --port script options
# which have priority on these settings
2012-05-01 16:21:21 +04:00
HOST = "127.0.0.1"
PORT= "8000"
2012-04-29 01:51:54 +04:00
# User and group the server should run as. Set to None if it should be the
# current user. Some OS don't support it and if so, it will be ignored.
2012-04-29 01:51:54 +04:00
USER = None
2012-04-29 22:10:04 +04:00
GROUP = None
# limit size of pasted text in bytes. Be carefull allowing too much
# size can slow down user's browser
2012-05-01 17:39:31 +04:00
MAX_SIZE = 1024 * 500
2012-05-01 17:46:18 +04:00
MAX_SIZE_KB = int(math.ceil(MAX_SIZE / 1024.0))
2012-05-06 15:54:57 +04:00
# Email for contact
2012-05-07 12:33:55 +04:00
EMAIL = "your@email.com"
# this import a file named settings_local.py if it exists
# you may want to create such a file to have different settings
# on each machine
try:
from settings_local import *
except ImportError:
2012-05-07 12:33:55 +04:00
pass