mirror of
https://github.com/getsops/sops.git
synced 2026-02-06 06:45:18 +01:00
13 lines
260 B
Python
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,
|
|
}
|