Skip to content

Commit 5bc7d8b

Browse files
committedJan 20, 2023
Initial commit
0 parents  commit 5bc7d8b

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

+968
-0
lines changed
 

‎.env.example

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# STRIPE
2+
STRIPE_WEBHOOK_SECRET=whsec_a-secure-key
3+
STRIPE_SECRET_KEY_LIVE=
4+
STRIPE_SECRET_KEY=sk_test_a-secure-key
5+
PUBLIC_STRIPE_PUBLISHABLE_KEY_LIVE=
6+
PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_test_a-secure-key
7+
8+
# SUPABASE
9+
PUBLIC_SUPABASE_URL=http://localhost:8000
10+
PUBLIC_SUPABASE_ANON_KEY=my-supabase-anon-key
11+
SUPABASE_SERVICE_ROLE_KEY=my-supabase-service-role-key

‎.eslintignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
10+
# Ignore files for PNPM, NPM and YARN
11+
pnpm-lock.yaml
12+
package-lock.json
13+
yarn.lock

0 commit comments

Comments
 (0)