Skip to content

Commit e58be93

Browse files
committed
Merge branch 'main' into fastify
2 parents 0545bf9 + 1f3b423 commit e58be93

File tree

620 files changed

+22983
-7545
lines changed

Some content is hidden

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

620 files changed

+22983
-7545
lines changed

.changeset/config.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
{
22
"$schema": "https://unpkg.com/@changesets/config@2.2.0/schema.json",
3-
"changelog": [
4-
"@remix-run/changelog-github",
5-
{
6-
"repo": "triggerdotdev/trigger.dev"
7-
}
8-
],
3+
"changelog": "@changesets/cli/changelog",
94
"commit": false,
105
"fixed": [
116
[

.dockerignore

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,43 @@
1-
*.log
1+
\*.log
22
.git
33
.github
4+
45
# editor
6+
57
.idea
68
.vscode
9+
710
# dependencies
11+
812
node_modules
913
.pnp
1014
.pnp.js
1115

1216
# testing
17+
1318
coverage
1419

1520
# next.js
21+
1622
.next/
1723
build
1824

1925
# packages
26+
2027
build
2128
dist
22-
packages/**/dist
29+
packages/\*\*/dist
2330

2431
# misc
32+
2533
.DS_Store
26-
*.pem
34+
\*.pem
2735

2836
.turbo
2937
.vercel
3038
.cache
3139
.output
32-
apps/**/public/build
40+
apps/\*\*/public/build
3341

3442
cypress/screenshots
3543
cypress/videos
@@ -38,6 +46,7 @@ apps/**/styles/tailwind.css
3846
packages/**/styles/tailwind.css
3947

4048
.changeset
49+
references
4150
examples
4251
CHANGESETS.md
4352
CONTRIBUTING.md

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ CLOUD_AIRTABLE_CLIENT_ID=
3131
CLOUD_AIRTABLE_CLIENT_SECRET=
3232
CLOUD_GITHUB_CLIENT_ID=
3333
CLOUD_GITHUB_CLIENT_SECRET=
34+
CLOUD_LINEAR_CLIENT_ID=
35+
CLOUD_LINEAR_CLIENT_SECRET=
3436
CLOUD_SLACK_APP_HOST=
3537
CLOUD_SLACK_CLIENT_ID=
3638
CLOUD_SLACK_CLIENT_SECRET=
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: 🐞 Bug Report
2+
description: Create a bug report to help us improve
3+
title: "bug: "
4+
labels: ["🐞 unconfirmed bug"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Provide environment information
9+
description: |
10+
Run this command in your project root and paste the results:
11+
```bash
12+
npx envinfo --system --binaries
13+
```
14+
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Describe the bug
20+
description: A clear and concise description of the bug, as well as what you expected to happen when encountering it.
21+
validations:
22+
required: true
23+
- type: input
24+
attributes:
25+
label: Reproduction repo
26+
description: If applicable, please provide a link to a reproduction repo or a Stackblitz / CodeSandbox project. Your issue may be closed if this is not provided and we are unable to reproduce the issue. If your bug is a docs issue, link the appropriate page.
27+
validations:
28+
required: true
29+
- type: textarea
30+
attributes:
31+
label: To reproduce
32+
description: Describe how to reproduce your bug. Steps, code snippets, reproduction repos etc.
33+
validations:
34+
required: true
35+
- type: textarea
36+
attributes:
37+
label: Additional information
38+
description: Add any other information related to the bug here, screenshots if applicable.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Ask a Question
4+
url: https://trigger.dev/discord
5+
about: Ask questions and discuss with other community members
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: "feat: "
4+
labels: ["🌟 enhancement"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Is your feature request related to a problem? Please describe.
9+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Describe the solution you'd like to see
15+
description: A clear and concise description of what you want to happen.
16+
validations:
17+
required: true
18+
- type: textarea
19+
attributes:
20+
label: Describe alternate solutions
21+
description: A clear and concise description of any alternative solutions or features you've considered.
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: Additional information
27+
description: Add any other information related to the feature here. If your feature request is related to any issues or discussions, link them here.

.github/labeler.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"📌 area: cli":
2+
- any: ["cli/**/*"]
3+
4+
"📌 area: t3-app":
5+
- any: ["cli/template/**/*"]
6+
7+
"📚 documentation":
8+
- any: ["www/**/*"]
9+
- any: ["**/*.md"]
10+
11+
"📌 area: ci":
12+
- any: [".github/**/*"]

.github/pull_request_template.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Closes #<issue>
2+
3+
## ✅ Checklist
4+
5+
- [ ] I have followed every step in the [contributing guide](https://github.com/triggerdotdev/trigger.dev/blob/main/CONTRIBUTING.md)
6+
- [ ] The PR title follows the convention.
7+
- [ ] I ran and tested the code works
8+
9+
---
10+
11+
## Testing
12+
13+
_[Describe the steps you took to test this change]_
14+
15+
---
16+
17+
## Changelog
18+
19+
_[Short description of what has changed]_
20+
21+
---
22+
23+
## Screenshots
24+
25+
_[Screenshots]_
26+
27+
💯

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ jobs:
129129
run: |
130130
# Setup environment variables
131131
cp ./.env.example ./.env
132-
cp ./examples/nextjs-test/.env.example ./examples/nextjs-test/.env.local
132+
cp ./references/nextjs-test/.env.example ./references/nextjs-test/.env.local
133133
134134
# Build packages
135-
pnpm run build --filter @examples/nextjs-test^...
135+
pnpm run build --filter @references/nextjs-test^...
136136
pnpm --filter @trigger.dev/database generate
137137
138138
# Move trigger-cli bin to correct place

.vscode/launch.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@
1919
"name": "Chrome webapp",
2020
"url": "http://localhost:3030",
2121
"webRoot": "${workspaceFolder}/apps/webapp/app"
22+
},
23+
{
24+
"type": "node-terminal",
25+
"request": "launch",
26+
"name": "Debug BYO Auth",
27+
"command": "pnpm run byo-auth",
28+
"envFile": "${workspaceFolder}/references/job-catalog/.env",
29+
"cwd": "${workspaceFolder}/references/job-catalog",
30+
"sourceMaps": true
2231
}
2332
]
2433
}

0 commit comments

Comments
 (0)