Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ DB_PORT=5432
DB_HOST=db

# Web port
NEXT_PUBLIC_API_URL=http://localhost/api
NEXT_PUBLIC_API_URL=http://localhost:8080/api
```

### Modes of Development
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ services:
volumes:
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
ports:
- "80:80"
- "8080:80"
depends_on:
- api
- frontend
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/config.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/** The API URL used in the project */
export const apiURL = 'http://localhost/api'
export const apiURL = 'http://localhost:8080/api'