Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rails/getting-started/migrate-from-heroku.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ There's still work to be done to move more Heroku stuff over, so don't worry if
To see all of your Heroku env vars and secrets, run:

```cmd
heroku config -s | grep -v -e "DATABASE_URL" -e "REDIS_URL" -e "REDIS_TLS_URL" | fly secrets import
heroku config -s | grep -v -e "DATABASE_URL" -e "REDIS_URL" -e "REDIS_TLS_URL" | sed -e "s/='/=/" -e "s/'$//" | fly secrets import
```

This command exports the Heroku secrets, excludes `DATABASE_URL` and `REDIS_URL`, and imports them into Fly.
Expand Down