forked from keystonejs/keystone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix heroku deployment and add app.json necessary for review apps (key…
…stonejs#941) * Try a thing * Try another thing * Try a thing * Try again * Try a thing * Change thing * Add app.json * Try another thing * Disable preconstruct aliases and babel loader building preconstruct packages when on heroku * Try running blog * Fix building next site * Try a thing * Revert "Try a thing" This reverts commit 0eb5c88. * Revert "Fix building next site" This reverts commit fabaa4d. * Revert "Try running blog" This reverts commit 2ab592a. * Replace process.env.HEROKU === 'true' with isHerokuEnv constant * const
- Loading branch information
Showing
5 changed files
with
50 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"name": "keystone-5", | ||
"scripts": {}, | ||
"env": { | ||
"CI": { | ||
"required": true | ||
}, | ||
"ENABLE_DEV_FEATURES": { | ||
"required": true | ||
}, | ||
"MONGODB_URI": { | ||
"required": true | ||
}, | ||
"NPM_CONFIG_PRODUCTION": { | ||
"required": true | ||
}, | ||
"HEROKU": { | ||
"required": true | ||
} | ||
}, | ||
"formation": { | ||
"web": { | ||
"quantity": 1 | ||
} | ||
}, | ||
"addons": [], | ||
"buildpacks": [ | ||
{ | ||
"url": "heroku/nodejs" | ||
} | ||
], | ||
"stack": "heroku-18" | ||
} |
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
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