2016-01-08 21:41:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
This is the entry point for the WSGI server
|
|
|
|
"""
|
2021-01-27 05:43:59 +00:00
|
|
|
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)
|