Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bcgov/range-api
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c250235c06e45bb564b12871871664a6e145bc03
Choose a base ref
..
head repository: bcgov/range-api
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f38e162c69621c46b6f2ee736d9d1c8adfd3c455
Choose a head ref
Showing with 0 additions and 2 deletions.
  1. +0 −1 src/router/routes_v1/files.js
  2. +0 −1 src/server.js
1 change: 0 additions & 1 deletion src/router/routes_v1/files.js
Original file line number Diff line number Diff line change
@@ -61,7 +61,6 @@ router.get(

const publicUrl = publicEndPoint ? url.replace(endPoint, publicEndPoint) : url;

console.log(process.env.NODE_ENV + '---------------');
res.json({
url: process.env.NODE_ENV === 'production' ? cleanProductionURL(publicUrl) : publicUrl,
});
1 change: 0 additions & 1 deletion src/server.js
Original file line number Diff line number Diff line change
@@ -27,7 +27,6 @@ const env = config.get('environment');
const port = config.get('port');
const isDev = env !== 'production';

console.log(process.env.NODE_ENV + '********************');
createApp()
.then((app) => {
app.listen(port, '0.0.0.0', (err) => {