UNPKG

790 BMarkdownView Raw
1heroku-local
2============
3
4Run heroku apps locally. This plugin is built into the Heroku Toolbelt, you do not need to install it separately.
5
6To use:
7
8```
9$ heroku local
10forego | starting web.1 on port 5000
11```
12
13This command internally uses [forego](https://github.com/ddollar/forego) to run the app locally.
14
15Help
16=======
17
18```
19$ heroku help local
20
21Usage: heroku local [PROCESSNAME]
22
23 run heroku app locally
24
25 Start the application specified by a Procfile (defaults to ./Procfile)
26
27 Examples:
28
29 heroku local
30 heroku local web
31 heroku local -f Procfile.test -e .env.test
32
33 -f, --procfile PROCFILE
34 -e, --env ENV
35 -c, --concurrency CONCURRENCY
36 -p, --port PORT
37 -r, --r
38
39Additional commands, type "heroku help COMMAND" for more details:
40
41 local:version # display forego version
42```