Kata rules are described there ! Made up for Wemanity / WeSquad internal administration.
In order to run this tool you need at least 2 things :
-
Java SE Runtime Environment 9 or Java Open-Source Development Kit 9
or
-
Docker and Docker-compose
with
-
Project files
Assuming you downloaded the files inside a ~/Downloads/yolo/
directory :
- Open up a
terminal
window - Navigate through your files to make
~/Downloads/yolo/
your working directory withcd
command
Now you have 3 ways to execute program :
-
with Java :
java -jar build/foobarqix-1.0-spring-boot.jar
-
with the Dockerfile (run as admin) :
docker build -t foobarqix:latest .
and thendocker run foobarqix
-
with Docker-compose (run as admin) :
docker-compose build
and thendocker-compose up
root
├─ src
│ ├─ main/java/
│ │ └─ ... some Java classes
│ └─ test/java/
│ └─ ... some Java test classes
├─ doc
│ ├─ build
│ │ ├─ ... some web files
│ │ └─ index.html // Build infos entry-point
│ └─ dev
│ ├─ ... some web files
│ └─ index.html // Dev documentation entry-point
├─ build
│ └─ xxx.jar // Java archive
├─ pom.xml // Maven build configuration file
├─ docker-compose.yml // Docker-compose configuration file
├─ Dockerfile // Docker build configuration file
└─ README.md // the file you're reading right now