This is straight boiler-plate using:
Frontend: NextJS, Typescript, Chakra UI
Backend: FastAPI, Python
Install dependencies (run this on the parent directory)
npm installThen you can run the frontend with:
cd packages/frontend
npm run devThen you can run the backend on a different terminal instance:
cd packages/backend
npm run devTroubleshooting Errors:
If you are having initial erroring in front-end code, make sure you are using the workspace version of typescript.
You can check this through command pallete CRLT + SHIFT + P then typing Typescript: Select Typescript Version
If you are having issues reciving server responces from the backend please ensure you are using node version < 18.
*template was build on v16.16.0