├── LICENSE ├── README.md ├── __pycache__ ├── app.cpython-38.pyc └── app2.cpython-38.pyc ├── app.py ├── create_db.py ├── logo.png ├── requirements.txt └── templates ├── fetch_new_message.html ├── fetch_new_thread.html ├── index.html ├── login.html ├── messages.html ├── read_message_thread.html ├── register.html └── send_message.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/app.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/__pycache__/app.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/app2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/__pycache__/app2.cpython-38.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/app.py -------------------------------------------------------------------------------- /create_db.py: -------------------------------------------------------------------------------- 1 | from app import db 2 | 3 | db.create_all() 4 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/fetch_new_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/templates/fetch_new_message.html -------------------------------------------------------------------------------- /templates/fetch_new_thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/templates/fetch_new_thread.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/templates/messages.html -------------------------------------------------------------------------------- /templates/read_message_thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/templates/read_message_thread.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/send_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychosifter/Flask-Messaging/HEAD/templates/send_message.html --------------------------------------------------------------------------------