12 lines
241 B
Python
12 lines
241 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
This is the entry point for the WSGI server
|
|
"""
|
|
from pathlib import Path
|
|
from stickynotes import make_app
|
|
|
|
application = make_app(Path(__file__).parent)
|
|
|
|
if __name__ == '__main__':
|
|
application.run(debug=True)
|