-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* check if env vars can be referenced directly in deploy config * try as deployments vars, and out of the manifest * add back to manifest * was it proactively checking other branches? * check that we really need vars in manifest * try migrate as cf run-task in single command * ignore that failing fe test for now * omg, this takes forever * try wo explicit wait * add back sleep, up to 120; add db connect directions * move sequelize-cli to production deps * change migrations path to build dir * move production sequalizerc to file * update migration command * add back all the jobs * rename prod sequalize config * missing ' * don't restart app Co-authored-by: Sarah-Jaine Szekeresh <[email protected]>
- Loading branch information
1 parent
83b4c07
commit 0017509
Showing
6 changed files
with
344 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
docs/ | ||
frontend/ | ||
cucumber/ | ||
deployment_config/ | ||
frontend/ | ||
src/ | ||
terraform/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const path = require('path'); | ||
|
||
module.exports = { | ||
'config': path.resolve('build', 'config', 'config.js'), | ||
'models-path': path.resolve('build', 'server', 'models'), | ||
'seeders-path': path.resolve('build', 'server', 'seeders'), | ||
'migrations-path': path.resolve('build', 'server', 'migrations') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.