Added frontend and console
This commit is contained in:
parent
b5790e35f7
commit
642371ccef
3 changed files with 61 additions and 1 deletions
8
frontend/index.py
Normal file
8
frontend/index.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from paramecio.index import create_app, run_app
|
||||
|
||||
app=create_app()
|
||||
|
||||
if __name__ == "__main__":
|
||||
run_app(app)
|
||||
7
frontend/padmin.py
Normal file
7
frontend/padmin.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from paramecio.cromosoma.dbadmin import start
|
||||
|
||||
start()
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue