- Ensure you have docker installed and running
- Clone the repo
git clone git@github.com:vueschool/forge-4-poc.git
- Install the dependencies
yarn
- Start the Supabase service
yarn supabase:start
- The needed supabase environment variables will print after the service has started. Add them to your .env file (can use .env.example as a template). You can also retrieve these at any time by running the following:
npx supabase status
- Migrate and seed your database with initial schema and values by running:
yarn db:reset
- Start the dev server
yarn dev
- That's it! 🎉 You're ready to go.