7 lines
154 B
Text
7 lines
154 B
Text
|
|
#!/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')
|