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: 2 months 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T01:22:50.000Z (over 1 year ago)
- Last Synced: 2025-04-14T06:30:30.450Z (about 1 year ago)
- Topics: firebase, firebase-auth, supabase-js, tailwindcss, template-vue, vue, vue3
- Language: Vue
- Homepage:
- Size: 1.61 MB
- Stars: 1
- Watchers: 1
- 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 repo
1. 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
```