Flask chat example with Socketio and Vuejs
Go to file
2017-11-03 11:57:12 +01:00
static First commit 2017-11-03 11:52:17 +01:00
templates First commit 2017-11-03 11:52:17 +01:00
main.py First commit 2017-11-03 11:52:17 +01:00
models.py First commit 2017-11-03 11:52:17 +01:00
README.md Add REAME 2017-11-03 11:57:12 +01:00
requirements.txt First commit 2017-11-03 11:52:17 +01:00

Flask chat

Use

  • Flask (Obvious!)
  • Flask-SQLAlchemy (ORM for database)
  • Flask-socketio (Generation of forms and validations)

Install

pip3 install -r requirements.txt
python3 models.py db init
python3 models.py db migrate
python3 models.py db upgrade

Run

python3 main.py