-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
34 lines (22 loc) · 754 Bytes
/
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
import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config:
SECRET_KEY = os.environ.get('SECRET_KEY') or 'jaysinging'
@staticmethod
def init_app(app):
pass
class DevelopmentConfig(Config):
DEBUG = True
SQLALCHEMY_DATABASE_URI = os.environ.get('DEV_DATABASE_URI') or \
'sqlite:////' + os.path.join(basedir, 'data-dev.sqlite')
MONGO_URI = "mongodb://localhost:27017/itao"
config = {
'development': DevelopmentConfig
}
# mongo collection config
PLANTS_COLLECTION = 'CrawelsPlantsItem'
DEMAND_COLLECTION = 'CrawelsDemandItem'
# nums of plant and order items show in one page, best be the multiple of 3
PER_PAGE_PLANTS = 15
PER_PAGE_ORDERS = 12
PER_PAGE_SEARCH = 9