👋 Join the community of builders & lifestyle enthusiasts
To run the project locally, follow these steps:
-
Navigate to the frontend directory and start the development server:
cd frontend yarn dev -
Navigate to the backend directory and start the backend server:
cd backend python -m main
-
Ensure all dependencies are installed beforehand.
frontend
yarn
backend We recommended to use a local virtual environment (.venv):
python -m venv .venv source .venv/bin/activate pip install -r requirements.txt -
Make sure you have a ngrok account and auth token setup
-
Make sure you create and link your clerk account and link the necessary env vars
- frontend
CLERK_SECRET_KEYCLERK_JWT_PUBLIC_KEY
- backend
CLERK_JWT_PUBLIC_KEY(get this in API Keys > Show JWT Public Key)
- frontend