MADHACK 3.0

Development

Setup

Frontend:

  1. Navigate to the frontend directory:
cd frontend
  1. Install dependencies:
pnpm install
  1. Start the development server:
pnpm start

Backend:

  1. Navigate to the backend directory:
cd backend
  1. Install dependencies:
pnpm install
  1. Start the development server:
pnpm dev

Deployment

Frontend:

  1. Update the backend URL in the frontend_build.yml file located in .github/workflows. Specifically, set the REACT_APP_BACKEND_URL environment variable to the URL of your backend server:
REACT_APP_BACKEND_URL = <backend_url>

Backend:

  1. Build the backend application:
pnpm build
  1. Deploy the backend application to a suitable hosting platform (e.g., Heroku, AWS, GCP).