12 lines
209 B
Python
Executable File
12 lines
209 B
Python
Executable File
#!/usr/bin/env python3
|
|
from imaginaerraum_door_admin import create_app
|
|
|
|
|
|
def main():
|
|
app = create_app()
|
|
app.run(host='0.0.0.0', port=app.config.get('PORT', 80))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|