Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mfenner committed Oct 7, 2023
1 parent e233c24 commit bdfd60d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rogue_scholar_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
app = Quart(__name__)

load_dotenv()
supabase_url: str = os.environ.get("SUPABASE_URL")
supabase_url: str = os.environ.get("SUPABASE_URL") or "https://db.rogue-scholar.org"
supabase_key: str = os.environ.get("SUPABASE_ANON_KEY")
supabase: SupabaseClient = create_client(supabase_url=supabase_url, supabase_key=supabase_key)
blogsSelect = "slug, title, description, language, favicon, feed_url, feed_format, home_page_url, generator, category"
Expand Down

0 comments on commit bdfd60d

Please sign in to comment.