Skip to content

Commit 314d5e3

Browse files
committed
chore: add bash commands
1 parent b08268f commit 314d5e3

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
run-dist:
2+
cd app && ./build/install/app/bin/app
3+
4+
build:
5+
cd app && ./gradlew build && ./gradlew installDist
6+
7+
clean:
8+
cd app && ./gradlew clean

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,28 @@
22
[![hexlet-check](https://github.com/ROSSARKO/java-project-61/actions/workflows/hexlet-check.yml/badge.svg)](https://github.com/ROSSARKO/java-project-61/actions/workflows/hexlet-check.yml)
33
## Description
44
***
5-
>This app contains several math games in it. If you answer 3 questions correctly, you win. Otherwise,
6-
the game ends and you will need to start over.
5+
```
6+
"The Brain Games" - This app contains several math games in it. If you answer 3 questions correctly, you win. Otherwise,
7+
The game ends and you will need to start over.
8+
```
79
***
810
## Demo:
9-
>__[Even](https://asciinema.org/connect/6da9d564-f8ad-47e0-98eb-dc7efdeb7227)__ |
11+
__[Even](https://asciinema.org/connect/6da9d564-f8ad-47e0-98eb-dc7efdeb7227)__ |
1012
__[Calc](https://asciinema.org/a/dSpSj9hkaShOIxZhzhbgw7bv3)__ |
1113
__[GCD](https://asciinema.org/a/egT7j4lie7pqZfF5hKfNLVjDy)__ |
1214
__[Progression](https://asciinema.org/a/yHUW0ER66ENJNQpuoWibP75ak)__ |
1315
__[Prime](https://asciinema.org/a/YrgJKHpNr4ZrwLZIxThIBqsow)__ |
1416
***
17+
## Build
18+
```bash
19+
make build
20+
```
1521
## Start
1622
```bash
1723
make run-dist
1824
```
25+
## Clean
26+
```bash
27+
make clean
28+
```
1929

app/Makefile

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)