This file contains hidden or 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
# in the nuxt app directory | |
heroku create | |
# Set ENV_VARS | |
heroku config:set NPM_CONFIG_PRODUCTION=false HOST=0.0.0.0 NODE_ENV=production | |
# CREATE Procfile | |
echo 'web: npm run start' > Procfile | |
# ADD JSON script |