Skip to content

Commit d5f7942

Browse files
committed
untrack
1 parent c1422d6 commit d5f7942

1,590 files changed

Lines changed: 169 additions & 755831 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 34 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,48 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

33
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.*
7-
.yarn/*
8-
!.yarn/patches
9-
!.yarn/plugins
10-
!.yarn/releases
11-
!.yarn/versions
4+
node_modules
5+
.pnp
6+
.pnp.js
7+
.pnpm-store
128

139
# testing
14-
/coverage
10+
coverage/
1511

1612
# next.js
17-
/.next/
18-
/out/
19-
20-
# production
21-
/build
22-
23-
# misc
24-
.DS_Store
25-
*.pem
26-
27-
# debug
13+
.next/
14+
out/
15+
build
16+
17+
# editors
18+
.idea/
19+
.vscode/*
20+
!.vscode/mcp.json
21+
.cursor/*
22+
!.cursor/mcp.json
23+
24+
# logs / cache
2825
npm-debug.log*
2926
yarn-debug.log*
3027
yarn-error.log*
3128
.pnpm-debug.log*
32-
33-
# env files (can opt-in for committing if needed)
34-
.env*
35-
36-
# vercel
37-
.vercel
38-
39-
# typescript
29+
.eslintcache
30+
.sentryclirc
31+
.cspellcache
4032
*.tsbuildinfo
41-
next-env.d.ts
33+
.turbo
34+
35+
# env files
36+
.env
37+
.env.test
38+
.env.local
39+
.env.development.local
40+
.env.test.local
41+
.env.production.local
4242

43-
# claude settings
44-
.claude/settings.local.json
45-
.mcp.local.json
43+
# misc
44+
.saleor-app-auth.json
45+
.DS_Store
46+
*.pem
4647

47-
playwright-report
48-
test-results
49-
# Sentry Config File
50-
.env.sentry-build-plugin
48+
.turbo

apps/app/.env.example

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Umami Analytics Configuration
2+
# Privacy-first, EU-compliant tracking (no cookies, no consent required)
3+
4+
# Get your Website ID from Umami: Settings → Websites → [Your Website] → Website ID
5+
NEXT_PUBLIC_UMAMI_WEBSITE_ID=your-website-id-here
6+
7+
# Umami script URL (optional, defaults to Umami Cloud)
8+
# Cloud (default): https://cloud.umami.is/script.js
9+
# Self-hosted: https://your-umami-instance.com/script.js
10+
NEXT_PUBLIC_UMAMI_SCRIPT_URL=https://cloud.umami.is/script.js
11+
12+
# Supabase configuration
13+
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
14+
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-public-anon-key
15+
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
16+
# Direct database connection string (for Better Auth)
17+
# Get from: Supabase Dashboard → Project Settings → Database → Connection string
18+
DATABASE_URL=postgresql://postgres:your-password@db.xxxxx.supabase.co:5432/postgres
19+
20+
# BetterAuth configuration
21+
BETTER_AUTH_SECRET=your-secret-key-min-32-chars
22+
BETTER_AUTH_URL=http://localhost:3000
23+
24+
# Resend (for magic link emails)
25+
# Get your API key from: https://resend.com/api-keys
26+
RESEND_API_KEY=re_xxxxxxxxxxxxxxxxxxxxxxxxxxxx
27+
28+
# Optional: used by Sentry to recognize your production host
29+
NEXT_PUBLIC_SITE_URL=https://app.dopeshot.io

apps/app/.env.sentry-build-plugin

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# DO NOT commit this file to your repository!
2+
# The SENTRY_AUTH_TOKEN variable is picked up by the Sentry Build Plugin.
3+
# It's used for authentication when uploading source maps.
4+
# You can also set this env variable in your own `.env` files and remove this file.
5+
SENTRY_AUTH_TOKEN=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

apps/app/.next/dev/build-manifest.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)