Flask chat example with Socketio and Vuejs
Go to file
Andros Fenollosa a0849ce1b2 Fixbug
2017-11-07 00:15:37 +01:00
static First commit 2017-11-03 11:52:17 +01:00
templates Fixbug 2017-11-07 00:15:37 +01:00
app.py Fixbug 2017-11-07 00:15:37 +01:00
envExample Fixbug 2017-11-07 00:15:37 +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