Skip to content

Commit a156e0b

Browse files
Fix the readme:
The script had an incorrect name. Also, add a link to the installation instruction and make some cosmetic changes. (cherry picked from commit 62c4624)
1 parent 1d44957 commit a156e0b

File tree

1 file changed

+14
-11
lines changed
  • exonum-java-binding/cryptocurrency-demo

1 file changed

+14
-11
lines changed

exonum-java-binding/cryptocurrency-demo/Readme.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Cryptocurrency demo
1+
# Cryptocurrency Demo
22

3-
This project demonstrates how to bootstrap own cryptocurrency
3+
This project demonstrates how to bootstrap your own cryptocurrency
44
with [Java binding Exonum blockchain](https://github.com/exonum/exonum).
55

66
Exonum blockchain keeps balances of users and handles secure
@@ -11,33 +11,36 @@ It implements most basic operations:
1111
- Create a new user
1212
- Transfer funds between users
1313

14-
## Install and run
14+
## Install and Run
1515

1616
### Manually
1717

18-
#### Getting started
18+
#### Getting Started
1919

2020
Be sure you installed necessary packages:
2121
- Linux or macOS. Windows support is coming soon.
2222
- [JDK 1.8+](http://jdk.java.net/12/).
2323
- [Maven 3.5+](https://maven.apache.org/download.cgi).
2424
- [git](https://git-scm.com/downloads)
2525
- [Node.js with npm](https://nodejs.org/en/download/)
26-
- You should have `Exonum Java App` installed and configured. The `exonum-java` binary should be available via the `PATH` environment variable.
26+
- [Exonum Java][ejb-installation] application.
2727

28-
#### Install and run
28+
[ejb-installation]: https://exonum.com/doc/version/0.11/get-started/java-binding/#installation
2929

30-
Build the project:
30+
#### Build and Run
31+
32+
Build the service project:
3133

3234
```sh
3335
$ cd exonum-java-binding/cryptocurrency-demo
3436

3537
$ mvn -P with-installed-app install
36-
37-
$ ./start_cryptocurrency_node.sh
3838
```
3939

40-
<!-- markdownlint-enable MD013 -->
40+
Run the service:
41+
```sh
42+
$ ./start-cryptocurrency-demo.sh
43+
```
4144

4245
Install frontend dependencies:
4346

@@ -53,7 +56,7 @@ Build sources:
5356
$ npm run build
5457
```
5558

56-
Run the application:
59+
Run the frontend application:
5760

5861
```sh
5962
$ npm start -- --port=6040 --api-root=http://127.0.0.1:6000 --explorer-root=http://127.0.0.1:3000

0 commit comments

Comments
 (0)