codesmidgen/stickynotes/app.py

12 lines
248 B
Python
Raw Normal View History

2016-01-08 21:41:24 +00:00
# -*- coding: utf-8 -*-
"""
This is the entry point for the WSGI server
"""
from pathlib import Path
2016-01-08 21:41:24 +00:00
from stickynotes import make_app
2023-07-27 00:43:28 +00:00
application = make_app(Path(__file__).parent.parent)
2016-01-08 21:41:24 +00:00
if __name__ == '__main__':
application.run(debug=True)