Skip to content

Commit

Permalink
Merge pull request #879 from datacite/4.x-fix
Browse files Browse the repository at this point in the history
4.x fix - allow CDN_URL to be settable from external env variables for production
  • Loading branch information
svogt0511 authored Sep 4, 2024
2 parents 31152e8 + f5e0164 commit 57f8c92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ module.exports = function (environment) {
ENV.CROSSREF_API_URL = 'https://api.crossref.org';
ENV.EVENTDATA_URL = 'https://api.datacite.org';
ENV.SEARCH_URL = 'https://search.datacite.org';
ENV.CDN_URL = 'https://assets.datacite.org';
ENV.CDN_URL = process.env.CDN_URL || 'https://assets.datacite.org'
ENV.HOME_URL = 'https://datacite.org';
ENV.COOKIE_DOMAIN = '.datacite.org';
ENV.HANDLE_SERVER =
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bracco",
"version": "4.8.0",
"version": "4.8.1",
"private": true,
"description": "Fabrica",
"repository": {
Expand Down

0 comments on commit 57f8c92

Please sign in to comment.