Skip to content

Commit

Permalink
update readme and allow all CORS origin just in case
Browse files Browse the repository at this point in the history
  • Loading branch information
JWS-aAI committed Nov 21, 2023
1 parent ffcb9ca commit 0af51a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions python/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
app = FastAPI(title="Ducky", docs_url="/")

origins = [
# '*'
"http://localhost:3000",
'*'
# "http://localhost:3000",
# "http://localhost:8080",
]

Expand Down

0 comments on commit 0af51a2

Please sign in to comment.