mirror of https://github.com/status-im/codimd.git
fix: heroku Proffile might show sensitive data in log
Signed-off-by: BoHong Li <raccoon@hackmd.io>
This commit is contained in:
parent
a2b9fa9a65
commit
1c5eaae51d
2
Procfile
2
Procfile
|
@ -1 +1 @@
|
||||||
web: CMD_DB_URL="$DATABASE_URL" CMD_PORT="$PORT" npm run start
|
web: ./bin/heroku_start.sh
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
CMD_DB_URL="$DATABASE_URL" CMD_PORT="$PORT" npm run start
|
Loading…
Reference in New Issue