-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_config.ini
More file actions
47 lines (40 loc) · 1.48 KB
/
sample_config.ini
File metadata and controls
47 lines (40 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[database]
# Database connection settings
db_host = database.example.com
db_port = 5432
db_user = admin
db_password = SuperSecretP@ssw0rd123
connection_string = postgresql://admin:SuperSecretP@ssw0rd123@database.example.com:5432/mydb
[api]
# API configuration
api_url = https://api.example.com/v1
api_key = ak_1234567890abcdef1234567890abcdef
secret_key = sk_98765432109876543210fedcba
[aws]
aws_access_key_id = AKIAIOSFODNN7EXAMPLE
aws_secret_access_key = wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
region = us-west-2
[oauth]
client_id = 987654321
client_secret = c0ffeeb4d455ecretc0de
access_token = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ
refresh_token = 1//xEoDL4iW3cxlI7yDbSRFYt7WgRJhkjKbfoK0Hsgs
[smtp]
host = smtp.example.com
port = 587
username = notifications@example.com
password = M@ilP@ssword456
auth_method = TLS
# GitHub personal access token
github_token = ghp_aBc123XyZ456AbCdEfGhIjKlMnOpQrStUvWxYz
# Firebase configuration
firebase_auth = {
"type": "service_account",
"project_id": "example-project",
"private_key_id": "1234567890abcdef1234567890abcdef12345678",
"private_key": "-----BEGIN PRIVATE KEY-----\nMIIEpAIBAAKCAQEA1c7+9z5Pad7OejecsQ==\n-----END PRIVATE KEY-----\n",
"client_email": "firebase-adminsdk@example-project.iam.gserviceaccount.com",
"client_id": "123456789012345678901",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token"
}