cosmicpi-rpi_V1.5/bin/cosmicpi-rest
2018-03-25 17:00:04 +02:00

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')