This commit is contained in:
2022-06-11 11:29:15 +01:00
parent fcfde34c72
commit 85ced0cc20
21 changed files with 88 additions and 71 deletions

View File

@@ -1,5 +1,7 @@
#!/bin/env python
from distutils.log import debug
from app import create_app
app = create_app()
if __name__ == '__main__': app.run()
if __name__ == '__main__':
from app.install import install_scripts
install_scripts()
app.run()