Skip to content

Commit 7385c89

Browse files
committed
added readme
1 parent 5a31b68 commit 7385c89

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# 💰 Simple Wallet Service 💻
2+
3+
![Packagist](https://img.shields.io/packagist/l/doctrine/orm.svg)
4+
5+
Wallet which will allow credit, debit of amount and cancellation of debit/credit transactions and shows current balance.
6+
7+
#### Build project
8+
```shell
9+
mvn clean compile assembly:single
10+
```
11+
Above command will generate `jar` file with all dependencies.
12+
13+
#### Run project
14+
Run project directly using `maven` with below command
15+
```shell
16+
mvn exec:java
17+
```
18+
19+
OR
20+
21+
Run project from generated `jar` file using below command
22+
```shell
23+
java -cp target/wallet-service-1.0.0-SNAPSHOT-jar-with-dependencies.jar com.wallet.WalletService
24+
```
25+
26+
*This project is licensed under the terms of the MIT license.*

0 commit comments

Comments
 (0)