Skip to content

Commit 97dfc5c

Browse files
authored
Merge pull request #46 from peelar/monorepo
monorepo
2 parents 4489e8e + 7a5687b commit 97dfc5c

215 files changed

Lines changed: 1798 additions & 634 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.

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"access": "restricted",
88
"baseBranch": "main",
99
"updateInternalDependencies": "patch",
10-
"ignore": []
10+
"ignore": ["dopeshot-landing"]
1111
}

.github/workflows/test.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,16 @@ jobs:
4646
run: pnpm install --frozen-lockfile
4747

4848
- name: Typecheck
49-
run: pnpm typecheck
49+
run: pnpm --filter dopeshot-app typecheck
5050

5151
- name: Run domain tests
52-
run: pnpm test:domain
52+
run: pnpm --filter dopeshot-app test:domain
5353

5454
- name: Run UI tests
55-
run: pnpm test:ui
55+
run: pnpm --filter dopeshot-app test:ui
5656

5757
- name: Install Playwright browsers
58-
run: pnpm exec playwright install --with-deps chromium
58+
run: pnpm --filter dopeshot-app exec playwright install --with-deps chromium
5959

6060
- name: Run E2E tests
61-
run: pnpm test:e2e
62-
61+
run: pnpm --filter dopeshot-app test:e2e

.gitignore

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
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
49+
test-results/
50+
playwright-report/

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ enable-pre-post-scripts=true
99

1010

1111

12+

README.md

Lines changed: 9 additions & 4 deletions

.env.example renamed to apps/app/.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ BETTER_AUTH_URL=http://localhost:3000
2525
# Get your API key from: https://resend.com/api-keys
2626
RESEND_API_KEY=re_xxxxxxxxxxxxxxxxxxxxxxxxxxxx
2727

28-
# Optional: used by Sentry to recognize your production host; keep dopeshot.io in production
29-
NEXT_PUBLIC_SITE_URL=https://dopeshot.io
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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
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"tsx": true,
66
"tailwind": {
77
"config": "tailwind.config.ts",
8-
"css": "app/globals.css",
8+
"css": "src/app/globals.css",
99
"baseColor": "slate",
1010
"cssVariables": false,
1111
"prefix": ""

0 commit comments

Comments
 (0)