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

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

- ### `reccoom_moderation-api-key`

The model provider's API key for text and image moderation.

- ### `reccoom_openai-api-key`

The AI provider's API key for the recommendation engine.
Expand Down
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 @@
hf-<...>
5 changes: 5 additions & 0 deletions src/development/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ secrets:
reccoom_ingest-api-key:
# The AI provider's API key for the recommendation engine.
file: ./secrets/reccoom/ingest-api-key.secret
reccoom_moderation-api-key:
# The model provider's API key for text and image moderation.
file: ./secrets/reccoom/moderation-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 @@ -560,6 +563,8 @@ services:
target: /run/environment-variables/RECCOOM_POSTGRES_PASSWORD
- source: reccoom_ingest-api-key
target: /run/environment-variables/INGEST_API_KEY
- source: reccoom_moderation-api-key
target: /run/environment-variables/MODERATION_API_KEY
- source: reccoom_openai-api-key
target: /run/environment-variables/OPENAI_API_KEY
volumes:
Expand Down
Loading