Frontend:
- Navigate to the frontend directory:
cd frontend
- Install dependencies:
pnpm install
- Start the development server:
pnpm start
Backend:
- Navigate to the backend directory:
cd backend
- Install dependencies:
pnpm install
- Start the development server:
pnpm dev
Frontend:
- Update the backend URL in the
frontend_build.yml
file located in.github/workflows
. Specifically, set theREACT_APP_BACKEND_URL
environment variable to the URL of your backend server:
REACT_APP_BACKEND_URL = <backend_url>
Backend:
- Build the backend application:
pnpm build
- Deploy the backend application to a suitable hosting platform (e.g., Heroku, AWS, GCP).