Skip to content

Commit

Permalink
updates versioning and adds render server to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Verdenroz committed Oct 3, 2024
1 parent c3e14ea commit 7494401
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async def lifespan(app: FastAPI):

app = FastAPI(
title="FinanceQuery",
version="1.4.3",
version="1.4.4",
description="FinanceQuery is a simple API to query financial data."
" It provides endpoints to get quotes, historical prices, indices,"
" market movers, similar stocks, finance news, indicators, search, and sectors."
Expand All @@ -45,7 +45,8 @@ async def lifespan(app: FastAPI):
" If you are testing locally you can use the local server and will not need a key."
,
servers=[
{"url": "https://43pk30s7aj.execute-api.us-east-2.amazonaws.com/prod", "description": "Production server"},
{"url": "https://finance-query.onrender.com", "description": "Render server"},
{"url": "https://43pk30s7aj.execute-api.us-east-2.amazonaws.com/prod", "description": "AWS server"},
{"url": "http://127.0.0.1:8000", "description": "Local server"}
],
contact={
Expand Down

0 comments on commit 7494401

Please sign in to comment.