We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ef681b commit 8926fefCopy full SHA for 8926fef
.gitignore
@@ -1,5 +1,6 @@
1
__pycache__/
2
/*.egg-info/
3
+/portingdb/_build
4
/portingdb.sqlite
5
/portingdb.sqlite-shm
6
/portingdb.sqlite-wal
elsasite.py
@@ -0,0 +1,17 @@
+#!/usr/bin/env python3
+import logging
+
+from portingdb import htmlreport
+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