/bored

🙄 My adaptation of Fireship's Supabase + React course.

Primary LanguageTypeScript

Bored

Bored is a message board application written in Vite and React with a Supabase backend.

It's adapted from Fireship's course on Supabase.

Getting Started

  1. Clone the repo
git clone https://github.com/Codeize/bored
  1. Install dependencies
yarn
  1. Create a Supabase project and get your API keys

  2. Create a .env.local file in the root of the project and add your API keys

VITE_SUPABASE_URL=https://<your-project-id>.supabase.co
VITE_SUPABASE_ANON_KEY=<your-anonymous-key>
  1. Start the development server
yarn dev

Deploying

  1. Create a Supabase project and get your API keys

  2. Create a .env.production file in the root of the project and add your API keys

VITE_SUPABASE_URL=https://<your-project-id>.supabase.co
VITE_SUPABASE_ANON_KEY=<your-anonymous-key>
  1. Build the project
yarn build
  1. Deploy the project to Vercel
vercel

License

MIT

Acknowledgements