You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: deployment/heroku.md
+7
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,13 @@ The default behaviour is to use the [latest crystal release](https://github.com/
25
25
26
26
## Requirements
27
27
28
+
First of all you need to add Heroku addons: `Heroku Redis` and `Heroku Postgres` for created app. Then uncomment in `config/settings.cr`:
29
+
```
30
+
settings.redis_url = ENV["REDIS_URL"] if ENV["REDIS_URL"]?
31
+
32
+
settings.database_url = ENV["DATABASE_URL"] if ENV["DATABASE_URL"]?
33
+
```
34
+
28
35
In order for the buildpack to work properly you should have a `shard.yml` file,as it is how it will detect that your app is a Crystal app. Your application has to listen on a port defined by Heroku.
0 commit comments