db_config.py
1.52 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
SQLITE = {
'file': '/home/user/tmp/pdc.db'
}
sqlite_uri = 'sqlite:///%(file)s' % SQLITE
MYSQL = {
'user': 'mysql',
'pw': 'mysql',
'db': 'pdc_dev',
'host': '127.0.0.1',
'port': '3306',
}
mysql_uri = 'mysql+pymysql://%(user)s:%(pw)s@%(host)s:%(port)s/%(db)s' % MYSQL
POSTGRES = {
'user': 'aroma-user',
'pw': 'aroma-pwd',
'db': 'aroma-db',
'host': '127.0.0.1',
'port': '5432',
}
postgres_uri = 'postgresql://%(user)s:%(pw)s@%(host)s:%(port)s/%(db)s' % POSTGRES
POSTGRESDEV = {
'user': 'aroma-user',
'pw': 'aroma-pwd',
'db': 'aroma-dev-db',
'host': '127.0.0.1',
'port': '5433',
}
postgres_dev_uri = 'postgresql://%(user)s:%(pw)s@%(host)s:%(port)s/%(db)s' % POSTGRESDEV
POSTGRESTEST = {
'user': 'aroma-user',
'pw': 'aroma-pwd',
'db': 'aroma-test-db',
'host': '127.0.0.1',
'port': '5434',
}
postgres_test_uri = 'postgresql://%(user)s:%(pw)s@%(host)s:%(port)s/%(db)s' % POSTGRESTEST
# The lesia mysql agents database
MYSQL_LESIA = {
'user': 'mysql',
'pw': 'mysql',
'db': 'pdc_dev',
'host': '127.0.0.1',
'port': '3306',
}
mysql_lesia_uri = 'mysql+pymysql://%(user)s:%(pw)s@%(host)s:%(port)s/%(db)s' % MYSQL
# Here, set you database uri
# will be imported in ./pdc_config.py
#
# sqlalchemy_database_uri = 'sqlite:///:memory:'
# sqlalchemy_database_uri = 'sqlite:///another-app.db'
# sqlalchemy_database_uri = postgres_uri
# sqlalchemy_testdb_uri = postgres_test_uri
# sqlalchemy_devdb_uri = postgres_dev_uri
sqlalchemy_devdb_uri = 'sqlite:///another-app.db'