-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config-test.yaml
116 lines (116 loc) · 2.73 KB
/
config-test.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
youtube:
api_key: api_key
service_account_key_file: service-account.json
refresh_timeout: P1D # https://en.wikipedia.org/wiki/ISO_8601#Durations
oauth:
client_id: client_id
client_secret: client_secret
twitter:
bearer_token: bearer_token
greeting: ""
enable_bot: false
self_id: "123"
dm_check_interval: PT30S
refresh_timeout: P1D
oauth:
client_id: client_id
client_secret: client_secret
consumer_key: consumer_key
consumer_secret: consumer_secret
jwt:
alg: ES384
jwk:
kty: EC
crv: P-384
x: apt_XmSA1Sxfdf_D-nT3g4Am-m7PAM8g8442KL-BGpFu6RtPwrZBVHu58M0WgxlI
y: wMcwPkCPqsSXrvbmKmcUXTnGP16FTx4naoLxSUlD-fo_6O8YC4k4HGOV7Xq7Ka8F
d: _3Yhqg8s9Ck6bnrGMxnD4Y27rsmFnW2-8Jn49UoMvDpjE_5MuCaGK574tUom9GfD
lnd:
url: https://localhost:8081
tls_cert: polar/volumes/lnd/alice/tls.cert
macaroon_by_path: polar/volumes/lnd/alice/data/chain/bitcoin/regtest/admin.macaroon
lnurl_base_url: http://localhost:5173
github:
client_id: xxx
client_secret: yyy
db:
url: postgresql+asyncpg://donate4fun@localhost/donate4fun
echo: false
connect_args:
timeout: 3
hypercorn:
use_reloader: true
websocket_ping_interval: 2
access_log_format: '%(h)s %({X-Forwarded-For}i)s "%(R)s" %(L)s %(s)s %(b)s "%(f)s" "%(a)s"'
include_server_header: false
lnurlp:
min_sendable_sats: 10
max_sendable_sats: 10_000_000
server_name: 'dev'
jwt_secret: secret
min_withdraw: 10
fee_limit: 10
withdraw_timeout: 10
cookie_secure: true
cookie_http_only: false
cookie_same_site: Lax
release: false
base_url: http://localhost:5173
frontend_host: localhost:5173
api_port: 8000
fastapi:
debug: true
root_path: ""
donator_name_seed: 30598
ownership_message: "I confirm that donate 4 fun account {donator_id} could withdraw my donations."
log:
version: 1
disable_existing_loggers: false
formatters:
std:
format: '%(asctime)s [%(levelname)s] %(name)s: %(message)s'
handlers:
stderr:
class: logging.StreamHandler
level: TRACE
formatter: std
stream: ext://sys.stderr
loggers:
donate4fun:
level: DEBUG
donate4fun.core:
level: DEBUG
donate4fun.twitter:
level: TRACE
donate4fun.screenshot:
level: TRACE
donate4fun.pubsub:
level: INFO
donate4fun.api:
level: TRACE
donate4fun.lnd:
level: DEBUG
donate4fun.settings:
level: INFO
tests:
level: DEBUG
asgi_testclient:
level: DEBUG
vcr:
level: WARNING
sqlalchemy.engine.Engine:
level: WARNING
sqlalchemy.pool:
level: WARNING
hypercorn:
level: DEBUG
asyncio:
level: INFO
posthog:
level: INFO
PIL.PngImagePlugin:
level: INFO
root:
level: DEBUG
propagate: true
handlers: [stderr]