Skip to content

Commit 067faab

Browse files
authored
Merge pull request #232 from maevsi/feat/reccoom/ingest-api-key
feat(reccoom): add ingest api key as an environment variable
2 parents 0069d93 + 358ccba commit 067faab

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ This project is deployed in accordance to the [DargStack template](https://githu
118118

119119
The database's default user.
120120

121+
- ### `reccoom_ingest-api-key`
122+
123+
The AI provider's API key for the recommendation engine.
124+
121125
- ### `reccoom_openai-api-key`
122126

123127
The AI provider's API key for the recommendation engine.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
UNSET THIRD PARTY SECRET
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<uuid>

src/development/stack.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ secrets:
7676
postgres_user:
7777
# The database's default user.
7878
file: ./secrets/postgres/user.secret
79+
reccoom_ingest-api-key:
80+
# The AI provider's API key for the recommendation engine.
81+
file: ./secrets/reccoom/ingest-api-key.secret
7982
reccoom_openai-api-key:
8083
# The AI provider's API key for the recommendation engine.
8184
file: ./secrets/reccoom/openai-api-key.secret
@@ -379,6 +382,8 @@ services:
379382
- postgres_db
380383
- postgres_password
381384
- postgres_user
385+
- source: reccoom_ingest-api-key
386+
target: /run/environment-variables/INGEST_API_KEY
382387
- reccoom_openai-api-key
383388
volumes:
384389
- ../../../reccoom/:/srv/app/ #DARGSTACK-REMOVE

0 commit comments

Comments
 (0)