influxdb/README.md

33 lines
860 B
Markdown
Raw Normal View History

2016-10-20 14:38:23 +00:00
# chronograf
## Builds
* To build assets and the go server, run `make`.
2016-10-20 14:38:23 +00:00
* To run server either `./chronograf --port 8888` or `make run`
* If you add files to the javascript build and you don't want to rebuild everything, run `make bindata && make chronograf`
## Deployment (for now)
2016-09-10 00:11:18 +00:00
Includes a Dockerfile that builds a container suitable for Heroku.
In order to push to heroku, make sure you've logged into Heroku normally with...
`heroku login`
Add the acceptance server git remote...
2016-10-20 14:38:23 +00:00
`git remote add acceptance https://git.heroku.com/chronograf-acc.git`
2016-09-10 00:11:18 +00:00
2016-10-20 14:38:23 +00:00
When you run `heroku apps` you should see "chronograf-acc".
2016-09-10 00:11:18 +00:00
Then install the container plugin
`heroku plugins:install heroku-container-registry`
Then log into the container registry with...
`heroku container:login`
Build and push the web container by running...
`heroku container:push web`