Deploy a sample app:
Below are the configuration options for both Heroku and Dokku environments.
Create your heroku app:
Heroku will return two URLS - the app domain ( you can configure a custom domain later ), and the heroku repository remote url which is configured to deploy your application.
Set up a new remote for this url:
Set your buildpack for Heroku with the command
Create a file in the root of your project named .buildpacks and add the following to that file:
Now configure a new Git remote for your Dokku deployment ( Dokku will create the repo automatically if it doesn't exist ):
Both Heroku and Dokku use a git push to the repository to trigger deployment. By default the master branch is the only branch triggered for deployment with a push. A simple push the repository triggers the deployment (using the remote name you set in configuration):
You may override this by specifying a branch in your push to act as master (e.g. - deploying to a staging instance):
Once deployment is returned as successful, you may receive NGINX 502 errors for up to 60 seconds as the CommandBox server starts up for the first time.
You may run additional commands on your server environment or enter a terminal to connect to your dyno by simply typing heroko run bash
from the root directory of your project.
Your heap size settings will need to be configured according to the dyno size ( Heroku ) or available memory of the Dokku instance. By default, Commandbox uses a heap size of 512MB, which is larger than the free/hobby tier for Heroku. A heap size setting larger than that allocated to the dyno will cause a Commandbox startup failure.
To set the heap size to 300MB, for example, simply run box server set jvm.heapsize=300
. This will save the setting to your server.json
file and will persist that value to your deployed application.