7 lines
No EOL
154 B
Python
Executable file
7 lines
No EOL
154 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from cosmicpi.rest.app import create_app
|
|
|
|
if __name__ == '__main__':
|
|
app = create_app()
|
|
app.run(debug=True, host='0.0.0.0') |