-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
41 lines (31 loc) · 1.1 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# JSON PRETTY PRINT
#JSONIFY_PRETTYPRINT_REGULAR = False
# Statement for enabling the development environment
DEBUG = True
# Define the application directory
import os
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
# Application threads. A common general assumption is
# using 2 per available processor cores - to handle
# incoming requests using one and performing background
# operations using the other.
#THREADS_PER_PAGE = 2
# Enable protection agains *Cross-site Request Forgery (CSRF)*
#CSRF_ENABLED = True
# Use a secure, unique and absolutely secret key for
# signing the data.
# cat /dev/urandom | base64 | head -c 16; echo
#CSRF_SESSION_KEY = 'CSRF_SESSION_KEY'
# Secret key for signing cookies
#SECRET_KEY = 'SECRET_KEY'
# Output SQL querys
SQLALCHEMY_ECHO = False
# For Signals
SQLALCHEMY_TRACK_MODIFICATIONS = True
# DATABASE
# MySQL
#SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://root:<PASSWORD>@localhost/transquest?charset=utf8mb4'
SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://root:@localhost/transquest?charset=utf8mb4'
#SERVER_NAME = 'localhost:5000'
#APPLICATION_ROOT = '/'
UPLOADS = 'uploads'