-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
43 lines (34 loc) · 1.16 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
42
43
#Statement for enabling development environment
DEBUG = True
import os
from datetime import timedelta
basedir = os.path.abspath(os.path.dirname(__file__))
BASE_DIR= os.path.abspath(os.path.dirname(__file__))
SQLALCHEMY_DATABASE_URI='sqlite:///' + os.path.join(BASE_DIR, 'app.db')
SQLALCHEMY_TRACK_MODIFICATIONS = True
DATABASE_CONNECT_OPTIONS={}
# Application thrads. 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 a signing the data
CSRF_SESSION_KEY = "secret"
#Secret key for signing cookies
SECRET_KEY="secret"
SCHEDULER_VIEWS_ENABLED = True
#Set up email notification
#mail server settings
MAIL_SERVER='localhost'
MAIL_PORT=25
MAIL_USERNAME=None
MAIL_PASSWORD=None
#administrator list
ADMINS=['[email protected]']
#Configuration for uploader files
#UPLOAD_FOLDER='data/'
UPLOAD_FOLDER='/home/aberenguel/www/api-rest-python-deeplearning/dataset/IDESPC1/'
MAX_CONTENT_LENGTH= 50 * 1024 * 1024
PER_PAGE=100