10 lines
215 B
Python
10 lines
215 B
Python
"""
|
|
This script runs the GirlsDayPython application using a development server.
|
|
"""
|
|
|
|
from os import environ
|
|
from GirlsDayPython import app
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host="0.0.0.0", port=5555)
|