This is the GitHub repository for the web app created for PATH by LA Blueprint.
For Windows users, make sure to install and set up WSL.
Install and set up Docker Desktop.
Clone the GitHub repo and install the required packages.
git clone https://github.com/lablueprint/path.git
cd path
npm installWith Docker Desktop running in the background, start the local database instance.
npx supabase startCopy the publishable key and the API URL from the terminal output. Create an .env.local file in the root directory of the project and add the values to the file.
NEXT_PUBLIC_SUPABASE_URL=<API URL>
NEXT_PUBLIC_SUPABASE_ANON_KEY=<publishable key>
Open http://localhost:54323 with your browser to view the local database with Supabase Studio.
Run the web app.
npm run devOpen http://localhost:3000 with your browser to view the application locally.
Stop the local database instance.
npx supabase stop