Go to file
Chris Goller 60267cb097 Merge pull request #53 from influxdata/feature/#42-influx-client
Influx implementation of TimeSeries
2016-09-19 11:57:25 -05:00
cmd/mr-fusion-server Auto-generate backend with stubbed ops 2016-09-12 15:12:30 -04:00
docs Add design ideas around autogenerated golang http server from swagger 2016-09-16 14:20:04 -05:00
influx Rework domain errs to be strings 2016-09-19 10:12:52 -04:00
mock Update influx package to support MonitoredServices 2016-09-16 12:11:28 -04:00
models Add API for monitored services. 2016-09-15 11:28:51 -05:00
restapi Update static assets to use ui/build 2016-09-16 13:47:58 -05:00
ui Use create-react-app 2016-09-09 16:10:54 -07:00
.gitignore Add simple static asset packaging. 2016-09-16 12:21:29 -05:00
Dockerfile Update docker and makefile to use mrfusion 2016-09-16 15:47:38 -05:00
Godeps Add influxdb to Godep for client 2016-09-19 10:25:34 -04:00
Makefile Update docker and makefile to use mrfusion 2016-09-16 15:47:38 -05:00
README.md Update docker and makefile to use mrfusion 2016-09-16 15:47:38 -05:00
circle.yml Fix circle syntax typos 2016-09-16 16:16:20 -05:00
errors.go Rework domain errs to be strings 2016-09-19 10:12:52 -04:00
stores.go Add API for monitored services. 2016-09-15 11:28:51 -05:00
swagger.yaml Add API for monitored services. 2016-09-15 11:28:51 -05:00
timeseries.go Merge branch 'develop' into feature/#42-influx-client 2016-09-16 09:51:58 -04:00
transformer.go Add interfaces to backend data and logic. 2016-09-12 14:43:37 -05:00

README.md

mrfusion

Builds

To build assets and the go server, run make. To run server either ./mrfusion --port 8888 or make run

Deployment (for now)

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...

git remote add acceptance https://git.heroku.com/mrfusion-acc.git

When you run heroku apps you should see "mrfusion-acc".

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