haha f1 car go neow
Please join the Discord server!
Frontend was bootstrapped with Create React App & backend is a Python Flask app with Flask-RESTful. The files are located in client/ and server/, respectively.
This application uses data from the Ergast Developer API.
Note: currently the Docker setup is botched.
Install frontend dependencies with npm and backend dependencies with pip:
cd client/
npm install
cd ../server/
pip install -r requirements.txtStart the Flask backend:
python api.pyOpen another terminal instance to start the React frontend:
cd client/
npm start