This is a Forum using FastAPI to make a Backend Server and React to make website. With the FastAPI to make the web routing,we also introduce the SQLalchemy to make a ORM model to operate the database. The react use the a famous React UI library named Ant Design to make the high-quality React webstie.
use these commands.
cd backend
pip install -r requirements.txt
python main.py
Then the backend server runs on the localhost:8000
use these commands.
cd frontend
npm install
npm run start
Then the frontend website runs on the localhost:3000