add cors middleware

This commit is contained in:
agatha 2024-04-06 18:29:56 -04:00
parent ebea9faabf
commit 3e9f97e0e0
2 changed files with 11 additions and 2 deletions

View File

@ -1,4 +1,5 @@
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
import models
from database import engine
@ -6,6 +7,14 @@ from routers import auth, forum
app = FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=['*'],
allow_credentials=False,
allow_methods=['GET', 'POST'],
allow_headers=['*']
)
models.Base.metadata.create_all(bind=engine)
app.include_router(forum.router)

View File

@ -1,8 +1,8 @@
const apiUrl = 'http://localhost:8000/api';
const apiUrl = 'http://localhost:8001';
function getCatalog() {
$.getJSON(apiUrl + "/catalog", function (resp) {
document.write(resp.text);
console.log(resp)
})
}
$( document ).ready(function() {