The following are required to bootstrap all other dependencies./
server
directorycd server
(Optional) Create a Python Virtual Environment
python3 -mvenv .venv && source .venv/bin/activate
Install dependencies
pip3 install -r requirements.txt
Run the server in watch mode
uvicorn src.main:app --reload
or npm run server
client
directorycd client
Install dependencies
npm install
Build and run the client (Recommended)
npm run build && npm run start
Install all dependencies (both ends)
npm run install-all
Run both the frontend app and backend server concurrently (execute in root directory)
npm run dev
[developer_name]/[task_name]
e.g. john/style-summarisation-button