Skip to content

Commit

Permalink
Merge pull request #14 from inferno-community/fix-env-var-name-for-se…
Browse files Browse the repository at this point in the history
…rver-base-url

Fix env var name for server base url
  • Loading branch information
arscan authored Mar 9, 2021
2 parents ac0eaa9 + 0279d90 commit 321eee1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const ENV = process.env.NODE_ENV || "production";
const PORT = process.env.PORT || (ENV == "test" ? 9444 : 9443);
const BASE_URL = 'bulk-data-server'; //process.env.BASE_URL
const SERVER_BASE_URL = process.env.BASE_URL;
const SERVER_BASE_URL = process.env.SERVER_BASE_URL;
const BULK_DATA_SERVER_PATH = '/bulk-data-server';

module.exports = {
Expand Down
Binary file modified database.r4.db
Binary file not shown.

0 comments on commit 321eee1

Please sign in to comment.