1
0

app.json 905 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "Huginn",
  3. "description": "Build agents that monitor and act on your behalf. Your agents are standing by!",
  4. "website": "https://github.com/huginn/huginn",
  5. "repository": "https://github.com/huginn/huginn",
  6. "logo": "https://raw.githubusercontent.com/huginn/huginn/master/media/huginn-icon-64.png",
  7. "env": {
  8. "BUILDPACK_URL": "https://github.com/heroku/heroku-buildpack-multi.git",
  9. "APP_SECRET_TOKEN": {
  10. "generator": "secret"
  11. },
  12. "PROCFILE_PATH": "deployment/heroku/Procfile.heroku",
  13. "ON_HEROKU": "true",
  14. "FORCE_SSL": "true",
  15. "INVITATION_CODE": {
  16. "generator": "secret"
  17. },
  18. "USE_GRAPHVIZ_DOT": "dot"
  19. },
  20. "scripts": {
  21. "postdeploy": "bundle exec rake db:migrate"
  22. },
  23. "addons": ["heroku-postgresql"],
  24. "success_url": "/users/sign_up",
  25. "stack": "heroku-18"
  26. }