|
@@ -14,17 +14,16 @@ CoBox uses the hypercore protocol and the hyperswarm distributed hash table (DHT
|
14
|
14
|
# Clone the repo recursively on either http or ssh
|
15
|
15
|
git clone --recursive http://gitlab.com/coboxcoop/core
|
16
|
16
|
|
17
|
|
-# install dev dependencies
|
18
|
|
-yarn
|
|
17
|
+# install dependencies and cross-reference local packages
|
|
18
|
+lerna bootstrap
|
19
|
19
|
|
20
|
|
-# start cobox-server
|
21
|
|
-yarn start
|
|
20
|
+# start the server
|
|
21
|
+npm start
|
22
|
22
|
|
23
|
|
-# start cobox-server dev server
|
24
|
|
-yarn dev:server
|
|
23
|
+# OR
|
25
|
24
|
|
26
|
|
-# use the cli
|
27
|
|
-yarn cli
|
|
25
|
+# start the development server
|
|
26
|
+npm run dev:server
|
28
|
27
|
```
|
29
|
28
|
|
30
|
29
|
### About
|