Skip to content

Commit 95ee1f2

Browse files
committed
readme readability
1 parent 24ffacb commit 95ee1f2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,33 @@ Clojure Lab materials
99
- Install a [Java Development Kit](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (1.6 or later)
1010
- Install the [leiningen build tool](http://leiningen.org/)
1111

12-
### Step 1: Clone this repo
12+
1) Clone this repo
1313

1414
```
1515
git clone git@github.com:cognitect/clojure-lab.git
1616
cd clojure-lab
1717
```
1818

19-
### Step 2: Start the gorilla repl server
19+
2) Start the gorilla repl server
2020

2121
```
2222
lein gorilla :port 55555
2323
```
2424

25-
### Step 3: Open the lab page in your web browser
25+
3) Open the lab page in your web browser
2626

2727
[Start](http://127.0.0.1:55555/worksheet.html?filename=src/cljlab/start.clj)
2828

2929
## Creating a standalone package
3030

31-
Create the uberjar:
31+
1) Create the uberjar:
3232

3333
```
3434
rm target
3535
lein uberjar
3636
```
3737

38-
Compress the directory into a zip (this may vary per platform):
38+
2) Compress the directory into a zip (this may vary per platform):
3939

4040
```
4141
cd ..
@@ -44,20 +44,20 @@ zip -r clojure-lab clojure-lab/images clojure-lab/src clojure-lab/target/*-stand
4444

4545
## Running the standalone package
4646

47-
### Step 1: Unzip the zip file
47+
1) Unzip the zip file
4848

4949
```
5050
unzip clojure-lab.zip
5151
cd clojure-lab
5252
```
5353

54-
### Step 2: Start the server
54+
2) Start the server
5555

5656
```
5757
java -jar target/clojure-lab-0.1.0-SNAPSHOT-standalone.jar
5858
```
5959

60-
### Step 3: View the page in your browser
60+
3) View the page in your browser
6161

6262
[Start](http://127.0.0.1:55555/worksheet.html?filename=src/cljlab/start.clj)
6363

0 commit comments

Comments
 (0)