theneonwhale / vue-forge-episode-4

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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


Languages

Language:Vue 45.2%Language:TypeScript 40.1%Language:Pact 14.0%Language:JavaScript 0.6%Language:CSS 0.1%