20 lines
623 B
Bash
20 lines
623 B
Bash
# Base URL for redirects etc.
|
|
BASE_URL=http://localhost:8080
|
|
# Where your homepage is, if different
|
|
# FRONTEND_REDIRECT_URL=http://other-server:8080/
|
|
|
|
# GitHub settings
|
|
GITHUB_URL=https://api.github.com
|
|
# Create your GitHub OAuth application here: https://github.com/settings/developers
|
|
GH_CLIENT_ID=insert_client_id
|
|
GH_CLIENT_SECRET=insert_client_secret
|
|
# Create your Personal Access Token here: https://github.com/settings/tokens
|
|
GH_TOKEN=insert_token
|
|
|
|
# Server settings
|
|
PORT=80
|
|
BIND_ADDRESS=::
|
|
|
|
# IP address of your Shields server. You may use DNS here instead of IP, but that's less secure
|
|
SHIELDS_IP=insert_shields_ip
|