Located in the frontend directory.
Node.js
npm installAlso create a .env.local environment variables file in the base frontend directory.
Add the following contents:
NEXT_PUBLIC_API_URL="http://127.0.0.1:8000"
This informs the frontend of which URL to make backend API requests to. In development, this should be the locally running server (see Backend below).
Development server reloads when code changes are made.
npm run devFirst, create a production build.
npm run buildThen, run the build.
npm run startLocated in the base directory.
Python 3.10
make installDevelopment server reloads when code changes are made.
make devmake run