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 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