https://github.com/jesusantguerrero/lumiere
🔥 Simple and opinonated template for my quick POCs MVPs with Firebase/Supabase support.
https://github.com/jesusantguerrero/lumiere
firebase firebase-auth supabase-js tailwindcss template-vue vue vue3
Last synced: about 1 month ago
JSON representation
🔥 Simple and opinonated template for my quick POCs MVPs with Firebase/Supabase support.
- Host: GitHub
- URL: https://github.com/jesusantguerrero/lumiere
- Owner: jesusantguerrero
- Created: 2021-08-29T19:05:52.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T01:22:50.000Z (7 months ago)
- Last Synced: 2024-11-07T02:28:46.126Z (7 months ago)
- Topics: firebase, firebase-auth, supabase-js, tailwindcss, template-vue, vue, vue3
- Language: Vue
- Homepage:
- Size: 1.61 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lumiere
Project boilerplate for my (firebase || supabase) + vue projects
### Tech Stack
- Vue ^3
- Firebase ^9 or Supabase Auth
- TailwindCSS
- Storybook
- Testing Library Vue### Features
- Login / Register
- Auth Flow: Authentication check + AuthState.
- Support Firebase and Supabase as Auth providers.Roadmap
- Get everything from zen## Installation
### Prerequisites
| Prerequisite | Version |
| ------------------------------------------------------| ------- |
| [Supabase account](https://supabase.com/)* or | |
| [Firebase account](https://firebase.google.com/)* | |
| node | `~ ^14.17.0`|
| npm (comes with Node) or yarn (used) | `~ ^6.14.8` |* Either firebase or supabase not both
```shell
node -v
```
#### Cloning the repo1. Open a Terminal in your projects directory
2. Clone this repo```shell
$ git clone https://github.com/jesusantguerrero/lumiere
```### setup
```bash
# Install NPM dependencies
npm install
# or If you like yarn
yarn install```
copy .env.example to .env.local and change the API KEY:
```bash
cp .env.example .env.local
```### running
```bash
# Start the development mode
npm run dev# run storybook
npm run storybook
```### testing
```
npm run test
```