Skip to content

Commit 8b90a35

Browse files
committed
full working demo
0 parents  commit 8b90a35

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+6025
-0
lines changed

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FB_PROJECT_ID=
2+
FB_CLIENT_EMAIL=
3+
FB_PRIVATE_KEY=

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
vite.config.js.timestamp-*
10+
vite.config.ts.timestamp-*
11+
service-account.json

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
engine-strict=true
2+
resolution-mode=highest

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# SvelteKit - The Full Course
2+
3+
This repo contains the code for the [Full SvelteKit Course](https://fireship.io/courses/sveltekit) on fireship.io
4+
5+
- [Live Demo 🥋](https://kung.foo)
6+
7+
## Usage
8+
9+
To take advantage of this code you will need to add your own Firebase client project config and Firebase Admin SDK service account as explained in the course setup.
10+
11+
```
12+
git clone <this-repo>
13+
npm i
14+
npm run dev
15+
```

0 commit comments

Comments
 (0)