chatapp with react & flask for practice

Set venv

pip install flask virtualenv
virtualenv venv
.\venv\scripts\activate.bat

Set Server

pip install flask_socketio

Set Client

npm i -g create-react-app socket.io-client
create-react-app client

Run Server

python server\src\app.py

Run React app

cd client
npm start