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: README.md
+35-1Lines changed: 35 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,41 @@ Using a personal access token would of course solve the first problem, but a per
17
17
18
18
## How?
19
19
20
-
Install the [Codenotify](https://github.com/apps/codenotify) GitHub App on your repositories and add some [CODENOTIFY files](https://github.com/sourcegraph/codenotify#codenotify-files).
20
+
### Free public server
21
+
22
+
Free public server comes with absolutely shitty availability.
23
+
24
+
1. Install the [Codenotify](https://github.com/apps/codenotify) GitHub App on your repositories.
25
+
2. Add some [CODENOTIFY files](https://github.com/sourcegraph/codenotify#codenotify-files).
26
+
27
+
### Run your own server
28
+
29
+
Docker images for the Codenotify.run server are available both on [Docker Hub](https://hub.docker.com/r/unknwon/codenotify.run) and [GitHub Container Registry](https://github.com/codenotify/codenotify.run/pkgs/container/codenotify.run).
30
+
31
+
> **Note**
32
+
> The `latest` tag represents the latest build from the `main` branch.
33
+
34
+
You need to create a `custom` directory for the configuration file `app.ini`:
35
+
36
+
```bash
37
+
$ mkdir -p custom/conf
38
+
$ touch custom/conf/app.ini
39
+
```
40
+
41
+
Please refer to [Local development > Step 2: Create a test GitHub App](#step-2-create-a-test-github-app) for creating a GitHub App, setting up a reverse proxy and filling out necessary configuration options.
42
+
43
+
> **Note**
44
+
> The [Caddy web server](https://caddyserver.com/) is recommended for production use with automatic HTTPS.
45
+
46
+
Then volume the `custom` directory into the Docker container for it being able to start (`/app/codenotify.run/custom` is the path inside the container):
0 commit comments