Skip to content

chore: changes java api port to 3001 #611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 22, 2024
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 lesson_26/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ We are continuing to build atop the foundation of our library app. For this assi
You can run the server using the usual `./gradlew run` command from the `api/java` directory. If you want to test that the server is running correctly, you can use `curl` like so:

```bash
curl http://localhost:5000/items | json_pp
curl http://localhost:3001/items | json_pp
```

Alternatively, you can test the API using the tool [Postman][postman-link]. I recommend installing this tool to make it easier to test things.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server:
port: 5000
port: 3001
spring:
jpa:
database-platform: org.hibernate.community.dialect.SQLiteDialect
Expand Down
Loading