diff --git a/README.md b/README.md index 0e4dcf2..cbb6b16 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,8 @@ Docker compose should be working: ```bash docker-compose up ``` -...but right now it doesn't on my machine. So, you can run the server and the client separately: + +Just in case it doesn't, you can run the services individually. ```bash cd nextjs diff --git a/python/app/main.py b/python/app/main.py index a805aa5..8fd088e 100644 --- a/python/app/main.py +++ b/python/app/main.py @@ -17,8 +17,8 @@ app = FastAPI(title="Ducky", docs_url="/") origins = [ - # '*' - "http://localhost:3000", + '*' + # "http://localhost:3000", # "http://localhost:8080", ]