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 @@ -118,6 +118,10 @@ This project is deployed in accordance to the [DargStack template](https://githu

The database's default user.

- ### `reccoom_ingest-api-key`

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

- ### `reccoom_openai-api-key`

The AI provider's API key for the recommendation engine.
Expand Down
1 change: 1 addition & 0 deletions src/development/secrets/reccoom/ingest-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 @@
<uuid>
5 changes: 5 additions & 0 deletions 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_ingest-api-key:
# The AI provider's API key for the recommendation engine.
file: ./secrets/reccoom/ingest-api-key.secret
reccoom_openai-api-key:
# The AI provider's API key for the recommendation engine.
file: ./secrets/reccoom/openai-api-key.secret
Expand Down Expand Up @@ -379,6 +382,8 @@ services:
- postgres_db
- postgres_password
- postgres_user
- source: reccoom_ingest-api-key
target: /run/environment-variables/INGEST_API_KEY
- reccoom_openai-api-key
volumes:
- ../../../reccoom/:/srv/app/ #DARGSTACK-REMOVE
Expand Down