Added app.py frontend

This commit is contained in:
Antonio de la Rosa 2020-02-16 00:36:58 +01:00
parent 31b3118291
commit e4c20bc65b
3 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,6 @@
include paramecio2/*.py include paramecio2/*.py
include paramecio2/config.py.sample include paramecio2/config.py.sample
include paramecio2/frontend/app.py
include README.md include README.md
include LICENSE.txt include LICENSE.txt
recursive-include paramecio2/libraries * recursive-include paramecio2/libraries *

View file

@ -52,7 +52,7 @@ def start():
print('Error: cannot create the directory. Check if exists and if you have permissions') print('Error: cannot create the directory. Check if exists and if you have permissions')
exit() exit()
# Create folder settings and copy index.py, admin.py # Create folder settings and copy app.py, admin.py
path_settings=args.path+'/settings' path_settings=args.path+'/settings'

View file

@ -0,0 +1,3 @@
from paramecio2.app import start_app
app=start_app()