https://github.com/exodes/releve
A shop directory project that runs on SvelteKit and Firebase.
https://github.com/exodes/releve
firebase-hosting sveltekit
Last synced: 7 months ago
JSON representation
A shop directory project that runs on SvelteKit and Firebase.
- Host: GitHub
- URL: https://github.com/exodes/releve
- Owner: eXodes
- Created: 2022-07-04T12:05:56.000Z (almost 4 years ago)
- Default Branch: dev
- Last Pushed: 2024-01-02T16:07:11.000Z (over 2 years ago)
- Last Synced: 2025-05-30T04:07:47.958Z (about 1 year ago)
- Topics: firebase-hosting, sveltekit
- Language: TypeScript
- Homepage: https://releve-app.web.app
- Size: 1.69 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Releve
This is a project that uses SvelteKit as the frontend framework and Firebase as the backend service.
> This project is currently under development.
## Developing
Once you've cloned the project and installed dependencies with `npm install` (or `pnpm install` or `yarn`).
Start the Firebase services emulator:
```bash
npm run firebase:emu:backend
```
Then seed the database:
```bash
# required for primary seed data
npm run firebase:seed
# or seed the database with fake data
npm run firebase:seed:faker
```
Finally, start the SvelteKit dev server:
```bash
npm run dev
```
#### URLs
- Firebase Emulator UI: http://localhost:4000
- SvelteKit: http://localhost:5173
## Building
To create a production version of your app:
```bash
npm run build
```
You can preview the production build with `npm run preview`.