after deploying kolide-quickstart to heroku is the...
# kolide
s
after deploying kolide-quickstart to heroku is there any steps to get it working or should https://my-kolide-quickstart.herokuapp.com/ give me something to see? I’m getting an Application Error after it deploys
g
Known issue if you do a heroku git pull and make the following change or wait for master to update https://github.com/kolide/kolide-quickstart/pull/49
s
I attempted to clone the existing heroku app code
heroku git:clone -a iwoca-kolide-quickstart
but it turned out to be empty. what am I missing?
g
Copy code
Install the Heroku CLI
Download and install the Heroku CLI.

If you haven't already, log in to your Heroku account and follow the prompts to create a new SSH public key.

$ heroku login
Clone the repository
Use Git to clone repo-name source code to your local machine.

$ heroku git:clone -a repo-name
$ cd repo-name
Deploy your changes
Make some changes to the code you just cloned and deploy them to Heroku using Git.

(git clone the remote on <http://github.com/kolide/fleet-quickstart|github.com/kolide/fleet-quickstart> to populate)

$ git add .
$ git commit -am "make it better"
$ git push heroku master
The PR has been merged now so delete and recreate the deployment using one click should be good
👍 1