Skip to content
Merged
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ This project is deployed in accordance to the [DargStack template](https://githu

The notification provider's service account credentials.

- ### `vibetype_monday`

The project management software's configuration.

- ### `vibetype_openai-api-key`

The AI provider's API key.
Expand Down
1 change: 1 addition & 0 deletions src/development/secrets/vibetype/monday.secret
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
UNSET THIRD PARTY SECRET
23 changes: 23 additions & 0 deletions src/development/secrets/vibetype/monday.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"apiToken": "eyJhbGciOiJIUzI1NiJ9.eyJ0aWQiOjEyMzQ1Njc4OSwiYWFpIjoxMSwidWlkIjoxMjM0NTY3OCwiaWFkIjoiMjAyNS0wMS0wMVQwMDowMDowMC4wMDBaIiwicGVyIjoibWU6d3JpdGUiLCJhY3RpZCI6MTIzNDU2NzgsInJnbiI6ImV1YzEifQ.fZT9_27JN2gzvAUEFIqhcFqe5t9ZQYmJ26lBQhBz_qs",
"board": {
"contact": {
"column": {
"emailAddressId": "email",
"messageId": "message",
"nameId": "name"
},
"id": "1234567890",
"groupId": "group_abc1defg"
},
"earlyBird": {
"column": {
"agreementId": "agreement",
"emailAddressId": "email",
"nameId": "name"
},
"id": "1234567890",
"groupId": "group_abc1defg"
}
}
}
5 changes: 5 additions & 0 deletions src/development/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ secrets:
vibetype_firebase-service-account-credentials:
# The notification provider's service account credentials.
file: ./secrets/vibetype/firebase-service-account-credentials.secret
vibetype_monday:
# The project management software's configuration.
file: ./secrets/vibetype/monday.secret
vibetype_openai-api-key:
# The AI provider's API key.
file: ./secrets/vibetype/openai-api-key.secret
Expand Down Expand Up @@ -460,6 +463,8 @@ services:
target: /home/node/.aws/credentials
- source: vibetype_firebase-service-account-credentials
target: /run/environment-variables/FIREBASE_SERVICE_ACCOUNT_CREDENTIALS
- source: vibetype_monday
target: /run/environment-variables/NUXT_PRIVATE_MONDAY
- source: vibetype_openai-api-key
target: /run/environment-variables/NUXT_PRIVATE_OPENAI_API_KEY
- source: vibetype_turnstile-key
Expand Down
4 changes: 2 additions & 2 deletions src/production/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ services:
- (( append ))
- traefik.http.routers.vibetype.middlewares=vibetype_cors,vibetype_redirectregex
- traefik.http.routers.vibetype_secure.tls.certresolver=default
image: ghcr.io/maevsi/vibetype:10.9.0
image: ghcr.io/maevsi/vibetype:10.10.0
user: (( prune ))
vibetype_beta:
# You can access the main project frontend's beta version at [beta.localhost](https://beta.localhost/).
Expand All @@ -151,7 +151,7 @@ services:
NUXT_PUBLIC_VIBETYPE_EMAIL_LIMIT24H: ${VIBETYPE_NUXT_PUBLIC_VIBETYPE_EMAIL_LIMIT24H}
NUXT_PUBLIC_VIO_ENVIRONMENT: beta
PGHOST: ${VIBETYPE_PGHOST}
image: ghcr.io/maevsi/vibetype:10.9.0
image: ghcr.io/maevsi/vibetype:10.10.0
secrets:
- source: vibetype_api-notification-secret
target: /run/environment-variables/NUXT_PRIVATE_API_NOTIFICATION_SECRET
Expand Down