maybe a fork of sparrowhe's "bluesky circle" webapp, to frontend only?
at main 489 B view raw
1import os 2 3class Config: 4 """Configuration class for the Flask app.""" 5 BASE_DIR = os.path.abspath(os.path.dirname(__file__)) 6 UPLOAD_FOLDER = os.path.join(BASE_DIR, 'static/avatars') 7 VITE_FOLDER_PATH = os.path.join(BASE_DIR, 'frontend') 8 9 # BlueSky login credentials 10 BLUESKY_HANDLE = os.getenv('BLUESKY_HANDLE', 'sparrow.0x0e.top') 11 BLUESKY_PASSWORD = os.getenv('BLUESKY_PASSWORD', 'Hdz20070225') 12 BLUESKY_BASE = os.getenv('BLUESKY_BASE', 'https://0x0e.top')