-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.py
More file actions
22 lines (19 loc) · 880 Bytes
/
settings.py
File metadata and controls
22 lines (19 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Login scripts modified from https://gist.github.com/guillaumevincent/4771570
import os
DEBUG = True
DIRNAME = os.path.dirname(__file__)
STATIC_PATH = os.path.join(DIRNAME, "public/static")
GAUTH_CLIENT_ID = "734018315784-0j6u2aibu0286f4md2ci5hcg67dahqdk.apps.googleusercontent.com"
GAUTH_CLIENT_SECRET = "REbvXt9JFhUOChZCq65PJkSN"
TEMPLATE_PATH = os.path.join(DIRNAME, "public/static")
PORT = 3036
import logging
import sys
#log linked to the standard error stream
logging.basicConfig(level=logging.DEBUG,
format="%(asctime)s - %(levelname)-8s - %(message)s",
datefmt="%d/%m/%Y %Hh%Mm%Ss")
console = logging.StreamHandler(sys.stderr)
COOKIE_SECRET = "a6Ca7pnQQfaNUeES9RjAzBEBlDbznEsamds7rHFy0Ng="
ANGEL_LIST_ID = "877b8e7f89b67117030725c93f7787eb2e2d240222916ae1"
ANGEL_LIST_SECRET = "fac08c4a43771aa1a8b57969c32d6a8bbb4b380cccf09562"