This repository has been archived by the owner on Oct 19, 2021. It is now read-only.
forked from AHAAAAAAA/PokemonGo-Map
-
Notifications
You must be signed in to change notification settings - Fork 43
Heroku Deployment
Ted Li edited this page Jul 22, 2016
·
4 revisions
This project supports deploying a new app to Heroku using the "Deploy to Heroku" button. Clicking this button will walk you through setting up the project on your Heroku account, allowing you to set the various configuration values required to make the project run.
To manually deploy this app to Heroku, perform the following steps:
# Get a local copy of the project
git clone https://github.com/AHAAAAAAA/PokemonGo-Map.git
# Create a Heroku app for the project
heroku apps:create
# Set the required configuration parameters for the app, replace with your
# actual values.
heroku config:set AUTH_SERVICE=insertyourauthservicehere
heroku config:set USERNAME=insertyourusernamehere
heroku config:set PASSWORD=insertyourpasswordhere
heroku config:set LOCATION=insertyourlocationhere
heroku config:set STEP_COUNT=insertyourstepcounthere
heroku config:set GMAPS_KEY=inseryourgmapskeyhere
# Push the project develop branch to the master branch on Heroku
git push heroku develop:master