mirror of
https://git.wownero.com/wownero/YellWOWPages.git
synced 2024-08-15 01:03:25 +00:00
5 lines
159 B
Python
5 lines
159 B
Python
from yellow.factory import create_app
|
|
import settings
|
|
|
|
app = create_app()
|
|
app.run(settings.HOST, port=settings.PORT, debug=settings.DEBUG, use_reloader=False)
|