forked from fedora-python/portingdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wsgi.py
48 lines (37 loc) · 1.24 KB
/
wsgi.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
44
45
46
47
48
#!/usr/bin/env python3
import os
import logging
import redis
from portingdb import htmlreport
level = logging.INFO
logging.basicConfig(level=level)
logging.getLogger('sqlalchemy.engine').setLevel(level)
sqlite_path = os.getcwd() + '/portingdb.sqlite'
db_url = 'sqlite:///' + sqlite_path
redis_configured = all(
var in os.environ for var in
('REDIS_SERVICE_HOST', 'REDIS_SERVICE_PORT', 'REDIS_PASSWORD'))
cache_config = {
'backend': 'dogpile.cache.redis',
'expiration_time': 3600, # 1h
'arguments': {
'host': os.environ['REDIS_SERVICE_HOST'],
'port': os.environ['REDIS_SERVICE_PORT'],
'password': os.environ['REDIS_PASSWORD'],
'db': 0,
'redis_expiration_time': 3600 + 600, # 1h 10min
'distributed_lock': True
}
} if redis_configured else None
application = htmlreport.create_app(db_url=db_url, cache_config=cache_config)
if __name__ == '__main__':
if redis_configured:
# Clear the Redis cache
r = redis.StrictRedis(
host=os.environ['REDIS_SERVICE_HOST'],
port=os.environ['REDIS_SERVICE_PORT'],
password=os.environ['REDIS_PASSWORD'],
db=0,
)
r.flushdb()
application.run(host='0.0.0.0', port=8080)