To build and start the Coffee Shop web app, you need to have the following software installed:
- Java 17 (or higher)
- Maven
- Git
We give installation instructions for Linux/Mac and the Windows for Linux Subsystem. Please ask your teaching assistant if you are using PowerShell or Command Prompt on Windows.
git clone git@github.com:ITU-DASYALab/introdb-coffeeshop.git
cd introdb-coffeeshopCreate a coffee.db file and execute the statements in init.sql using DuckDB:
duckdb coffee.db < init.sqlmvn compilemvn exec:javaOpen your browser and navigate to: http://localhost:8080
If Java is not installed, install Java:
sudo apt install default-jdk -yIf Maven is not installed, install Maven:
sudo apt install mavenIf git is not installed, install git:
sudo apt install git