https://github.com/codeize/bored
🙄 My adaptation of Fireship's Supabase + React course.
https://github.com/codeize/bored
Last synced: about 1 year ago
JSON representation
🙄 My adaptation of Fireship's Supabase + React course.
- Host: GitHub
- URL: https://github.com/codeize/bored
- Owner: Codeize
- Created: 2022-11-26T09:52:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-26T11:07:01.000Z (over 3 years ago)
- Last Synced: 2025-02-14T10:55:44.975Z (over 1 year ago)
- Language: TypeScript
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](https://fireship.io/courses/supabase/).
## Getting Started
1. Clone the repo
```bash
git clone https://github.com/Codeize/bored
```
2. Install dependencies
```bash
yarn
```
3. [Create a Supabase project and get your API keys](https://supabase.io/)
4. Create a `.env.local` file in the root of the project and add your API keys
```bash
VITE_SUPABASE_URL=https://.supabase.co
VITE_SUPABASE_ANON_KEY=
```
5. Start the development server
```bash
yarn dev
```
## Deploying
1. [Create a Supabase project and get your API keys](https://supabase.io/)
2. Create a `.env.production` file in the root of the project and add your API keys
```bash
VITE_SUPABASE_URL=https://.supabase.co
VITE_SUPABASE_ANON_KEY=
```
3. Build the project
```bash
yarn build
```
4. Deploy the project to Vercel
```bash
vercel
```
## License
[MIT](https://choosealicense.com/licenses/mit/)
## Acknowledgements
- [Fireship](https://fireship.io/)
- [Zack DeRose](https://twitter.com/zackderose)