| 1 | # Bind address (use 0.0.0.0 in Docker) |
| 2 | HOST=127.0.0.1 |
| 3 | # Listen port |
| 4 | PORT=4747 |
| 5 | # Path to a directory containing bare git repos (softserve's <data>/repos works) |
| 6 | KEPLER_REPO_ROOT=./repos |
| 7 | # Site name shown in header and feed |
| 8 | KEPLER_SITE_NAME=kepler |
| 9 | # Public base URL, used for Open Graph / social meta tags |
| 10 | KEPLER_BASE_URL=http://localhost:4747 |
| 11 | # HTTPS entry in the repo-home Clone menu (URL = <base>/<repo>.git). |
| 12 | # Point at the host that actually serves git (e.g. softserve). Empty = omit. |
| 13 | KEPLER_CLONE_BASE_URL= |
| 14 | # SSH (scp-style) entry in the Clone menu (URL = <user@host>:<repo>.git). |
| 15 | # Include the user, e.g. git@git.example.com. Empty = omit. |
| 16 | # If both clone vars are empty the Clone button is hidden. |
| 17 | KEPLER_CLONE_SSH_HOST= |