This is a test application for learning AI assited coding.
spring-boot-duckdb-app
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── SpringBootDuckdbAppApplication.java
│ │ ├── resources
│ │ ├── application.properties
│ │ └── schema.sql
│ └── test
│ ├── java
│ │ └── com
│ │ └── example
│ │ └── SpringBootDuckdbAppApplicationTests.java
├── mvnw
├── mvnw.cmd
├── pom.xml
└── README.md
- Java 11 or higher
- Maven
-
Clone the repository:
git clone <repository-url> cd spring-boot-duckdb-app -
Build the project:
./mvnw clean install -
Run the application:
./mvnw spring-boot:run
The application properties can be configured in src/main/resources/application.properties. Make sure to set the correct database connection settings for DuckDB.
The database schema can be defined in src/main/resources/schema.sql. You can add SQL statements to create tables and initialize data as needed.
To run the tests, use the following command:
./mvnw test
This project is licensed under the MIT License. See the LICENSE file for details.