Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dev.vars.example
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ STRIPE_KEY=""
MERCADOPAGO_KEY=""
RESEND_API_KEY=""
SUPABASE_JWT_DECODER""
SUPABASE_JWT_ENCODER=""

ENFORCED_JWT_TOKEN=""
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ module.exports = {
// Incredible Plugin.
// Rules URL: https://the-guild.dev/graphql/eslint/rules
"@graphql-eslint/unique-fragment-name": "error",
"@graphql-eslint/no-deprecated": "warn",
"@graphql-eslint/selection-set-depth": [
"error",
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_db_model.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: ⬢ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
- name: 📦 Download Cached Package Dependencies
uses: actions/cache@v3
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: ⬢ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
- name: 📦 Download Cached Package Dependencies
uses: actions/cache@v3
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: ⬢ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
- name: 📦 Download Cached Package Dependencies
uses: actions/cache@v3
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: ⬢ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
- name: 📦 Download Cached Package Dependencies
uses: actions/cache@v3
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: ⬢ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22

- name: 📦 Download Cached Package Dependencies
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_and_typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: ⬢ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22

- name: 📦 Download Cached Package Dependencies
uses: actions/cache@v3
Expand Down
1 change: 1 addition & 0 deletions drizzle/migrations/0020_elite_electro.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "users" ADD COLUMN "isRetoolEnabled" boolean DEFAULT false NOT NULL;
Loading