diff --git a/Procfile b/Procfile new file mode 100644 index 000000000..95896ea4b --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +worker: bin/bbgo run --config config/bbgo.yaml diff --git a/app.json b/app.json new file mode 100644 index 000000000..e7c72aea7 --- /dev/null +++ b/app.json @@ -0,0 +1,26 @@ +{ + "name": "bbgo", + "description": "a modern cryptocurrency trading bot", + "repository": "https://github.com/c9s/bbgo", + "keywords": [ + "trading", + "cryptocurrency", + "crypto" + ], + "env": { + "MAX_API_KEY": { + "description": "The API key of your MAX Exchange account" + }, + "MAX_API_SECRET": { + "description": "The API secret of your MAX Exchange account" + } + }, + "buildpacks": [ + { + "url": "heroku/go" + } + ], + "addons": [ + "jawsdb:kitefin" + ] +} diff --git a/go.mod b/go.mod index b82c1c8e7..47e219dbf 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,5 @@ +// +heroku install ./cmd/... + module github.com/c9s/bbgo go 1.13