Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ heroku config:set ADMIN_JWT_SECRET=$(cat .env | grep ADMIN_JWT_SECRET | cut -d=
heroku config:set JWT_SECRET=$(cat .env | grep -w JWT_SECRET | cut -d= -f2)
```

:::tip
On Windows, variables can be set manually by running the `heroku config:set VARIABLE=your-key-here` for each variable.
:::

The following `openssl` commands will generate random new secrets (Mac and Linux only):

```bash
Expand Down Expand Up @@ -292,7 +296,7 @@ yarn add pg

::::::

### 8. Commit your changes
### 7. Commit your changes

`Path: ./my-project/`

Expand All @@ -301,15 +305,15 @@ git add .
git commit -m "Update database config"
```

### 9. Update Yarn lockfile
### 8. Update Yarn lockfile

`Path: ./my-project/`

```bash
yarn install
```

### 10. Commit your changes
### 9. Commit your changes

`Path: ./my-project/`

Expand All @@ -318,7 +322,7 @@ git add yarn.lock
git commit -m "Updated Yarn lockfile"
```

### 11. Deploy
### 10. Deploy

`Path: ./my-project/`

Expand Down