Skip to content

Commit 9d835fe

Browse files
committed
Convert Private key to base64
1 parent 04d85e9 commit 9d835fe

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

self-hosting/govern/integrations/github.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,13 @@ To configure GitHub integration, you'll need to create a GitHub App within your
120120
- Client secret
121121
- GitHub App name
122122
- Private key
123+
124+
7. You’ll need to convert the **Private key** to `base64` before adding it as an environment variable. You can do this using the following command:
125+
```bash
126+
cat private_key.pem | base64 -w 0
127+
```
123128

124-
7. Add these environment variables with the values to your Plane instance's `.env` file.
129+
8. Add the environment variables with the values to your Plane instance's `.env` file.
125130

126131
```bash
127132
GITHUB_CLIENT_ID=<client_id>

0 commit comments

Comments
 (0)