You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,14 @@ Eve is a programming language and IDE based on years of research into building a
12
12
13
13
### From Source
14
14
15
-
You'll need a recent [node.js](https://nodejs.org) and then:
15
+
You'll need a recent [node.js](https://nodejs.org) for your platform. Download the Eve source either by cloning this repository:
16
+
17
+
18
+
```
19
+
git clone https://github.com/witheve/Eve.git
20
+
```
21
+
22
+
or you can [download](https://github.com/witheve/Eve/archive/master.zip) the Eve source directly. To build and run Eve, run the following commands in the root Eve directory:
16
23
17
24
```
18
25
npm install
@@ -21,6 +28,14 @@ npm start
21
28
22
29
Then open `http://localhost:8080/` in your browser.
23
30
31
+
### From Docker
32
+
33
+
First, [download](https://www.docker.com/products/docker) and install Docker for your platform. To download and install the Eve container, run the following command:
34
+
35
+
```
36
+
docker run -p 8080:8080 witheve/eve
37
+
```
38
+
24
39
## How to use Eve
25
40
26
41
You can learn about Eve with the following resources:
0 commit comments