chiefonboarding / ChiefOnboarding

Free and open-source employee onboarding platform. Onboard new hires through Slack or the web portal.
https://chiefonboarding.com
GNU Affero General Public License v3.0
673 stars 123 forks source link

Heroku deployment - Wrong dyno types #360

Closed cameron-potts1 closed 1 year ago

cameron-potts1 commented 1 year ago

Hi,

can you change the dyno type to one that Heroku currently offers? I am getting errors and Heroku say just the dyno type needs updated.

DeAndre
 - 2 hours ago

Hi there,

Thank you for your patience. It looks like the author of this [platform](https://github.com/chiefonboarding/ChiefOnboarding) is declaring the wrong dyno type. We used to offer hobby dynos but discontinued them recently. Please reach out to the owner of the app and ask them if they can change the following contents to reflect our current [dyno types](https://devcenter.heroku.com/articles/dyno-types) that we offer.

{
  "name": "ChiefOnboarding",
  "description": "Free and open-source employee onboarding platform. Onboard new hires through Slack or the web portal.",
  "repository": "https://github.com/chiefonboarding/ChiefOnboarding",
  "logo": "https://avatars.githubusercontent.com/u/29075722",
  "keywords": ["python", "django", "employee", "onboarding", "slack"],
  "website": "https://chiefonboarding.com/",
  "formation": {
    "web": {
      "quantity": 1,
      "size": "hobby"
    },
    "worker": {
      "quantity": 1,
      "size": "hobby"
    }
  },
  "image": "heroku/python",
  "addons": [
    "heroku-postgresql"
  ],
  "env": {
    "SECRET_KEY": {
      "description": "A random secret key for Django",
      "generator": "secret"
    },
    "SSL_REDIRECT": {
      "description": "Automatically redirect to HTTPS for a secure connection",
      "value": "True"
    },
    "ALLOWED_HOSTS": {
      "description": "This is the base url of your application. This can be a heroku url (xxxx.herokuapp.com - which matches your domain for this app) or your own (sub) domain. Format: test.chiefonboarding.com",
      "required": true
    }
  }
}
Hope this helps! Please let us know if you have any further questions.

Thanks,

DeAndre
GDay commented 1 year ago

Thanks for the heads-up. I have now fixed it through this PR: #361

Should be good to go now!