Flask chat example with Socketio and Vuejs
Go to file
Andros Fenollosa ffb8f26efb Update REAME
2017-11-06 21:38:40 +01:00
static First commit 2017-11-03 11:52:17 +01:00
templates First commit 2017-11-03 11:52:17 +01:00
app.py Update REAME 2017-11-06 21:38:40 +01:00
envExample Update REAME 2017-11-06 21:38:40 +01:00
models.py First commit 2017-11-03 11:52:17 +01:00
README.md Update REAME 2017-11-06 21:38:40 +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

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

Run

python3 main.py