We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c06da3 commit db41874Copy full SHA for db41874
1 file changed
elsasite.py
@@ -0,0 +1,17 @@
1
+#!/usr/bin/env python3
2
+import logging
3
+
4
+from portingdb import htmlreport
5
6
+level = logging.INFO
7
+logging.basicConfig(level=level)
8
9
+sqlite_path = 'portingdb.sqlite'
10
11
+db_url = 'sqlite:///' + sqlite_path
12
13
+application = htmlreport.create_app(db_url=db_url, cache_config=None)
14
15
+if __name__ == '__main__':
16
+ from elsa import cli
17
+ cli(application, base_url='http://fedora.portingdb.xyz/')
0 commit comments