mirror of
https://github.com/benbusby/whoogle-search.git
synced 2025-07-09 03:04:13 -04:00
Created Updating a Heroku Quick Deploy Instance (markdown)
parent
002a44f1a5
commit
757854d65b
22
Updating-a-Heroku-Quick-Deploy-Instance.md
Normal file
22
Updating-a-Heroku-Quick-Deploy-Instance.md
Normal file
@ -0,0 +1,22 @@
|
||||
Unfortunately, updating an instance deployed via Heroku Quick Deploy isn't as simple as creating one.
|
||||
|
||||
### Quickest Solution
|
||||
The quickest way to get the latest version of the app is to delete your old Heroku instance and redeploy a new one with the same name. Configuration changes won't be carried over, but your browser will reuse the existing template for searching from the URL bar if the name of the app is the same.
|
||||
|
||||
### Alternative Solution
|
||||
If you don't want to go through those steps, you can deploying with the following:
|
||||
|
||||
```
|
||||
git clone https://github.com/benbusby/whoogle-search.git
|
||||
cd whoogle-search
|
||||
heroku git:remote -a <name_of_my_heroku_app>
|
||||
git push heroku
|
||||
```
|
||||
|
||||
and push future updates with:
|
||||
|
||||
```
|
||||
cd <path_to>/whoogle-search
|
||||
git pull
|
||||
git push heroku
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user