- Followup from #1163 - Retire try.html - Separate build config for dev and production - Move config for badge examples into the JS build - Move the prod transform into npm scripts - In the future this could be handled using a bundler plugin - make website builds production build as before - Run the production build in CI to make sure it’s working - Build the frontend on Heroku
20 lines
591 B
Bash
20 lines
591 B
Bash
# Base URL for redirects etc.
|
|
BASE_URL=http://localhost:8080
|
|
# Where your homepage is
|
|
INFOSITE=http://localhost: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
|