Commit d63ede2fba9e081eb8fd7a8033474f1aee486bad
update (simplify) install instructions
Dominic Tarr committed on 7/21/2016, 7:49:21 AMParent: 59211949b2fd8d2c1c3b1584a297219e9b85a907
Files changed
README.md | changed |
README.md | ||
---|---|---|
@@ -8,15 +8,8 @@ | ||
8 | 8 | |
9 | 9 | This makes in very easy to create say, a renderer for a new message type, |
10 | 10 | or switch to a different method for choosing user names. |
11 | 11 | |
12 | -Currently, this is a proof of concept, there is a basic way to switch | |
13 | -between tabs, and you can view the main log, user feeds, or threads. | |
14 | -This should obviously be improved with a module that can | |
15 | -scroll properly scoll through a feed. | |
16 | - | |
17 | -No "write" methods have been implemented yet. | |
18 | - | |
19 | 12 | ## overview |
20 | 13 | |
21 | 14 | Currently, the main module is `tabs.js` which plugs into |
22 | 15 | the `app` socket, and provides the `screen_view` socket. |
@@ -63,24 +56,22 @@ | ||
63 | 56 | npm install scuttlebot@latest -g |
64 | 57 | # make sure you have secure-scuttlebutt@15.2.0 |
65 | 58 | npm ls secure-scuttlebutt -g |
66 | 59 | sbot server |
67 | -# OR, install and run patchwork. (must have at least >= 2.8) | |
60 | +# if you are already running patchwork, that also works. | |
61 | +# (must have at least >= 2.8) | |
68 | 62 | |
69 | -# then in another tab (these must be two separate commands) | |
63 | +# then in another tab (these must be 3 separate commands) | |
70 | 64 | sbot plugins.install ssb-links |
71 | 65 | sbot plugins.install ssb-query |
66 | +sbot plugins.install ssb-ws | |
72 | 67 | # restart sbot server (go back to previous tab and kill it) |
73 | 68 | ``` |
74 | 69 | now clone and run patchboard. |
75 | 70 | ``` |
76 | 71 | git clone https://github.com/dominictarr/patchbay.git |
77 | 72 | cd patchbay |
78 | 73 | npm install electro electron-prebuilt -g |
79 | -# for node@6, you'll currently need to use js crypto. | |
80 | -CHLORIDE_JS=1 electro index.js | |
81 | - | |
82 | -# otherwise | |
83 | 74 | electro index.js |
84 | 75 | ``` |
85 | 76 | |
86 | 77 | ## modules |
@@ -90,11 +81,8 @@ | ||
90 | 81 | square shows api, arrow direction points from user to provider) |
91 | 82 | |
92 | 83 | [module graph](./graph.svg) |
93 | 84 | |
94 | - | |
95 | 85 | ## License |
96 | 86 | |
97 | 87 | MIT |
98 | 88 | |
99 | - | |
100 | - |
Built with git-ssb-web