-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathconfig.py
31 lines (26 loc) · 835 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
import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config(object):
ABS_PATH = '/'
# postgres
"""
PYTHONGRID_DB_HOSTNAME = 'localhost'
PYTHONGRID_DB_NAME = 'sampledb'
PYTHONGRID_DB_USERNAME = 'root'
PYTHONGRID_DB_PASSWORD = 'root'
PYTHONGRID_DB_TYPE = 'postgres+psycopg2'
PYTHONGRID_DB_SOCKET = ''
PYTHONGRID_DB_CHARSET = 'utf-8'
"""
# mysql
PYTHONGRID_DB_HOSTNAME = ''
PYTHONGRID_DB_NAME = 'sampledb'
PYTHONGRID_DB_USERNAME = 'root'
PYTHONGRID_DB_PASSWORD = 'root'
PYTHONGRID_DB_TYPE = 'mysql+pymysql'
PYTHONGRID_DB_SOCKET = '/Applications/MAMP/tmp/mysql/mysql.sock'
PYTHONGRID_DB_CHARSET = 'utf-8'
# constant
GRID_SESSION_KEY = '_oPYTHONGRID'
JQGRID_ROWID_KEY = '_rowid'
PK_DELIMITER = '---' # must be 3 characters