Skip to content

Commit

Permalink
Feat/roles page (#267)
Browse files Browse the repository at this point in the history
Create roles-page

---------

Co-authored-by: Caio Borghi <[email protected]>
  • Loading branch information
Luisfp0 and ocodista authored Jun 13, 2024
1 parent 47d11b4 commit 72b1627
Show file tree
Hide file tree
Showing 31 changed files with 3,687 additions and 2,440 deletions.
2 changes: 0 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
module.exports = {
extends: [
"next",
"turbo",
"prettier",
"eslint:recommended",
"plugin:react/recommended",
Expand All @@ -22,4 +21,3 @@ module.exports = {
},
},
};

2 changes: 2 additions & 0 deletions .github/workflows/verify-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
jobs:
Build:
runs-on: ubuntu-latest
environment:
name: production
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ RUN yarn install

# Build the project
COPY --from=builder /app/out/full/ .

# Declare arguments
ARG DATABASE_URL
ARG SUPABASE_URL
Expand Down
1 change: 0 additions & 1 deletion apps/auto-email-sender/email-pre-renderer/setEnvVars.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable turbo/no-undeclared-env-vars */
process.env.URL_PREFIX = 'url'
process.env.RABBITMQ_ADDRESS = 'fake-address'
process.env.SECRET_KEY = 'SECRET'
3 changes: 3 additions & 0 deletions apps/web/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ NEXT_PUBLIC_MIXPANEL_KEY=
CRON_SECRET=

NEXT_PUBLIC_PLAUSIBLE_ADDRESS=

REDIS_HOST=
REDIS_PORT=
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { getSupabaseClient } from 'db/src/supabase/getSupabaseClient'
import { Webhook } from 'svix'

const getWebhook = () => {
// eslint-disable-next-line turbo/no-undeclared-env-vars
const webhookSecret = process.env.RESEND_WEBHOOK_SECRET
if (!webhookSecret) throw new Error('RESEND_WEBHOOK_SECRET is not settled')
return new Webhook(webhookSecret)
Expand Down
Loading

0 comments on commit 72b1627

Please sign in to comment.