https://github.com/ffissore/social_networking_kata
https://github.com/ffissore/social_networking_kata
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ffissore/social_networking_kata
- Owner: ffissore
- License: gpl-3.0
- Created: 2020-07-07T10:04:31.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-13T23:22:37.000Z (over 4 years ago)
- Last Synced: 2024-12-28T02:43:35.541Z (5 months ago)
- Language: Java
- Size: 39.1 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Social Networking Kata
## Compile and run
If your box has java 11 and maven already installed, you can compile the code with
```bash
mvn clean package
```and run it with
```bash
mvn exec:java -Dexec.mainClass=org.fissore.kata.socialnetwork.CLI
```Interrupt the program with CTRL+C
## Docker
If your box has docker installed, you can prepare an image with
```bash
docker build . -t ffissore/social_networking_kata
```
and run it with
```bash
docker run --rm -it ffissore/social_networking_kata
```Interrupt the program with CTRL+C