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

The database's default user.

- ### `reccoom_openai-api-key`

The AI provider's API key for the recommendation engine.

- ### `sqitch_target`

The database change management application's database connection string.
Expand Down Expand Up @@ -152,7 +156,7 @@ This project is deployed in accordance to the [DargStack template](https://githu

- ### `vibetype_openai-api-key`

The AI provider's API key.
The AI provider's API key for the frontend.

- ### `vibetype_turnstile-key`

Expand Down
1 change: 1 addition & 0 deletions src/development/secrets/reccoom/openai-api-key.secret
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
UNSET THIRD PARTY SECRET
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sk-proj-<...>
7 changes: 6 additions & 1 deletion src/development/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ secrets:
postgres_user:
# The database's default user.
file: ./secrets/postgres/user.secret
reccoom_openai-api-key:
# The AI provider's API key for the recommendation engine.
file: ./secrets/reccoom/openai-api-key.secret
sqitch_target:
# The database change management application's database connection string.
file: ./secrets/sqitch/target.secret
Expand All @@ -95,7 +98,7 @@ secrets:
# The project management software's configuration.
file: ./secrets/vibetype/monday.secret
vibetype_openai-api-key:
# The AI provider's API key.
# The AI provider's API key for the frontend.
file: ./secrets/vibetype/openai-api-key.secret
vibetype_turnstile-key:
# The captcha provider's application key.
Expand Down Expand Up @@ -370,11 +373,13 @@ services:
- traefik.http.services.reccoom.loadbalancer.server.port=5245
environment:
POSTGRES_HOST: postgres
RECCOOM_POSTGRES_HOST: reccoom_postgres
image: maevsi/reccoom:dev
secrets:
- postgres_db
- postgres_password
- postgres_user
- reccoom_openai-api-key
volumes:
- ../../../reccoom/:/srv/app/ #DARGSTACK-REMOVE
- ./configurations/postgraphile/jwtRS256.key.pub:/run/configurations/jwtRS256.key.pub:ro
Expand Down