Skip to content

Commit

Permalink
fix(makefile): make dev to start openwhyd against "dev" auth0 tenant
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienjoly committed Dec 29, 2023
1 parent 31b1019 commit 4a1ae82
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,4 +1,5 @@
.env
.env-local
.env-prod
.token
.port
Expand Down
1 change: 1 addition & 0 deletions env-vars-testing-local.sh
@@ -1,2 +1,3 @@
. ./env-vars-testing.sh
. ./.env-local # helpful to store secrets, e.g. credentials for auth0 development tenant
export MONGODB_PORT=27117
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -13,7 +13,7 @@
"build": "scripts/transpile-bookmarklet.sh",
"postinstall": "cp node_modules/playemjs/dist/playem-*.js public/js/",
"start": "node app.js --fakeEmail --digestInterval -1 $@",
"start:localdb": ". ./env-vars-testing.sh && npm start -- $@",
"start:localdb": ". ./env-vars-testing-local.sh && npm start -- $@",
"start:coverage": "npx --yes nyc --silent $(node -p 'require(`./package.json`).scripts.start') $@",
"start:coverage:no-clean": "npx --yes nyc --silent --no-clean $(node -p 'require(`./package.json`).scripts.start') $@",
"stop": "npx --yes kill-port --port 8080 >/dev/null",
Expand Down Expand Up @@ -102,4 +102,4 @@
"ts-morph": "^20.0.0",
"typescript": "^5.2.2"
}
}
}

0 comments on commit 4a1ae82

Please sign in to comment.