Skip to content

Commit

Permalink
fix: typo in trafle key backend deployment parameter
Browse files Browse the repository at this point in the history
BREAKING CHANGE: from `TRAFLE_KEY` parameter to `TREFLE_KEY`
  • Loading branch information
MDeLuise committed Dec 6, 2023
1 parent 000b9cd commit 3a6351b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ There are 2 configuration file available:
CACHE_HOST=cache
CACHE_PORT=6379
TRAFLE_KEY= # put you key here, otherwise the "search" feature will include only user generated species
TREFLE_KEY= # put you key here, otherwise the "search" feature will include only user generated species
ALLOWED_ORIGINS=* # CORS allowed origins (comma separated list)
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/application-dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ app.version = @project.version@
# System config
#
users.max = ${USERS_LIMIT:-1}
trefle.key = ${TRAFLE_KEY:}
trefle.key = ${TREFLE_KEY:}
upload.location = ${UPLOAD_DIR:/tmp/plant-it}


Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ app.version = @project.version@
# System config
#
users.max = ${USERS_LIMIT:-1}
trefle.key = ${TRAFLE_KEY:}
trefle.key = ${TREFLE_KEY:}
upload.location = ${UPLOAD_DIR:/upload-dir}


Expand Down
2 changes: 1 addition & 1 deletion deployment/backend.env
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CACHE_TTL=86400
CACHE_HOST=cache
CACHE_PORT=6379

TRAFLE_KEY=
TREFLE_KEY=

ALLOWED_ORIGINS=*

Expand Down

0 comments on commit 3a6351b

Please sign in to comment.