To run the frontend application:
- Navigate to the
frontenddirectory:cd frontend - Install the dependencies:
npm install
- Start the development server:
The application will typically be available at
npm run dev
http://localhost:5173.
To run the backend application:
-
Navigate to the
backenddirectory:cd backend -
Install the dependencies:
npm install
-
Start the server:
npm start
The application will typically be available at
http://localhost:8080.Note: Ensure your Supabase instance is configured and running if the backend relies on it for database and authentication services. Refer to Supabase documentation for setup.
Required environment variables:
```env
PORT=8080
SUPABASE_URL=your_supabase_url_here
SUPABASE_ANON_KEY=your_supabase_anon_key_here
```