This is a project that uses SvelteKit as the frontend framework and Firebase as the backend service.
This project is currently under development.
Once you've cloned the project and installed dependencies with npm install (or pnpm install or yarn).
Start the Firebase services emulator:
npm run firebase:emu:backendThen seed the database:
# required for primary seed data
npm run firebase:seed
# or seed the database with fake data
npm run firebase:seed:fakerFinally, start the SvelteKit dev server:
npm run dev- Firebase Emulator UI: http://localhost:4000
- SvelteKit: http://localhost:5173
To create a production version of your app:
npm run buildYou can preview the production build with npm run preview.