mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 20:53:58 +01:00
44 lines
918 B
Python
44 lines
918 B
Python
"""FastAPI setup."""
|
|
|
|
import fastapi
|
|
|
|
from rich import print
|
|
from dotenv import load_dotenv
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
import core
|
|
import transfer
|
|
|
|
load_dotenv()
|
|
|
|
app = fastapi.FastAPI()
|
|
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=['*'],
|
|
allow_credentials=True,
|
|
allow_methods=['*'],
|
|
allow_headers=['*']
|
|
)
|
|
|
|
app.include_router(core.router)
|
|
|
|
@app.on_event('startup')
|
|
async def startup_event():
|
|
"""Runs when the API starts up."""
|
|
|
|
@app.get('/')
|
|
async def root():
|
|
"""
|
|
Returns general information about the API.
|
|
"""
|
|
|
|
return {
|
|
'hi': 'Welcome to the Nova API!',
|
|
'learn_more_here': 'https://nova-oss.com',
|
|
'github': 'https://github.com/novaoss/nova-api',
|
|
'core_api_docs_for_nova_developers': '/docs',
|
|
'ping': 'pong'
|
|
}
|
|
|
|
app.add_route('/v1/{path:path}', transfer.handle, ['GET', 'POST', 'PUT', 'DELETE', 'PATCH'])
|