From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/vagrant/push%2Fheroku.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 devdocs/vagrant/push%2Fheroku.html (limited to 'devdocs/vagrant/push%2Fheroku.html') diff --git a/devdocs/vagrant/push%2Fheroku.html b/devdocs/vagrant/push%2Fheroku.html new file mode 100644 index 00000000..e9468d84 --- /dev/null +++ b/devdocs/vagrant/push%2Fheroku.html @@ -0,0 +1,15 @@ +

Vagrant Push

Heroku Strategy

Heroku is a public PAAS provider that makes it easy to deploy an application. The Vagrant Push Heroku strategy pushes your application's code to Heroku.

Warning: The Vagrant Push Heroku strategy requires you have configured your Heroku credentials and created the Heroku application. This documentation will not cover these prerequisites, but you can read more about them in the Heroku documentation.

+

Only files which are committed to the Git repository will be pushed to Heroku. Additionally, the current working branch is always pushed to the Heroku, even if it is not the "master" branch.

The Vagrant Push Heroku strategy supports the following configuration options:

Usage

The Vagrant Push Heroku strategy is defined in the Vagrantfile using the heroku key:

config.push.define "heroku" do |push|
+  push.app = "my_application"
+end
+
+

And then push the application to Heroku:

$ vagrant push
+
+

+ © 2010–2018 Mitchell Hashimoto
Licensed under the MPL 2.0 License.
+ https://www.vagrantup.com/docs/push/heroku.html +

+
-- cgit v1.2.3