3574eacb25
Additionally make changes to enable running clipperz from uwsgi
11 lines
148 B
Python
11 lines
148 B
Python
#!/usr/bin/env python
|
|
from clipperz import app, db
|
|
|
|
|
|
def main():
|
|
db.create_all()
|
|
app.run(debug=True)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|