Skip to content

jrothman/vue-forge-episode-4

 
 

Repository files navigation

How to Get Started

  1. Ensure you have docker installed and running
  2. Clone the repo or Run with VS Code
git clone git@github.com:vueschool/vue-forge-episode-4.git
  1. Start on the boilerplate branch
git checkout boilerplate
  1. Install the dependencies
yarn
# or
npm install
  1. Start the Supabase service
yarn supabase:start
# or
npm run supabase:start
  1. The needed supabase environment variables will print after the service has started. Duplicate .env.example to .env and provide the following variables from the terminal print out.
# this can stay the same
SUPABASE_URL="http://localhost:3000"
# anon key the terminal print out
SUPABASE_KEY="<your anon key>"
# service role key from the terminal print out
SUPABASE_SERVICE_KEY="<your service_role key>"

You can also retrieve these at any time by running the following:

npx supabase status
  1. Migrate and seed your database with initial schema and values by running:
yarn db:reset
# or
npm run db:reset
  1. Start the dev server
yarn dev
# or
npm run dev
  1. Follow these directions in the Devnet Setup Guide to get a local development blockchain network running.

  2. That's it! 🎉 You're ready to go.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 45.8%
  • TypeScript 39.1%
  • Pact 14.3%
  • Other 0.8%