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 @@ -36,7 +36,7 @@ We are continuing to build atop the foundation of our library app. For this assi

#### Running the API

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:
You can run the server using the usual `./gradlew run --console=plain` 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:3001/items | json_pp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ spring:
generate-ddl: true
datasource:
url: jdbc:sqlite::resource:sqlite/data.db
driver-class-name: org.sqlite.JDBC
driver-class-name: org.sqlite.JDBC
logging:
level:
root: WARN
org.springframework: WARN
Loading