1
0
mirror of https://github.com/getsops/sops.git synced 2026-02-06 06:45:18 +01:00
Files
sops/examples/all_in_one/config/static.py
2016-02-24 22:02:22 -06:00

13 lines
260 B
Python

# Load in our dependencies
import json
# Load in our secrets
with open('config/secret.json', 'r') as file:
secret = json.loads(file.read())
# Define our configuration
common = {
'github_oauth_token': secret['github_oauth_token'],
'port': 8080,
}