init
This commit is contained in:
parent
be5fb603f3
commit
859fb7a19d
11 changed files with 436 additions and 0 deletions
9
app/config.py
Normal file
9
app/config.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import os
|
||||
from dotenv import load_dotenv
|
||||
|
||||
load_dotenv()
|
||||
|
||||
SUPABASE_URL = os.getenv("SUPABASE_URL")
|
||||
SUPABASE_KEY = os.getenv("SUPABASE_KEY")
|
||||
BYBIT_API_KEY = os.getenv("BYBIT_API_KEY")
|
||||
BYBIT_API_SECRET = os.getenv("BYBIT_API_SECRET")
|
||||
Loading…
Add table
Add a link
Reference in a new issue