Skip to content

Commit ad3263a

Browse files
OrelSokolovdrujensen
authored andcommitted
Note about Heroku addons and app configuration (#160)
1 parent 4573904 commit ad3263a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

deployment/heroku.md

+7
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ The default behaviour is to use the [latest crystal release](https://github.com/
2525

2626
## Requirements
2727

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+
2835
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.
2936

3037
{% hint style="warning" %}

0 commit comments

Comments
 (0)