.
├── README.md
├── Model
├── socket
├── frontend
├── backend
First, We install all the node_modules to run our development server:
cd ../socket
npm install
cd ../backend
npm install
cd ../frontend
yarn
Then, we run the development server:
cd Model
python app.py
cd ../socket
npm run dev
cd ../backend
npm run dev
cd ../frontend
npm start
Open http://localhost:3000 with your browser to see the result.