close
Warning:
Can't synchronize with repository "(default)" (Unsupported version control system "darcs": Can't find an appropriate component, maybe the corresponding plugin was not enabled? ). Look in the Trac log for more information.
- Timestamp:
-
2011-01-09 05:55:06 (14 years ago)
- Author:
-
arch_o_median
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v32
|
v33
|
|
10 | 10 | === You'll need tahoe: === |
11 | 11 | |
12 | | Set up a tahoe client on a '''secure''' machine following the {{{"}}}[http://tahoe-lafs.org/quickstart.html quickstart]{{{"}}} and {{{"}}}[http://tahoe-lafs.org/running.html running]{{{"}}} instructions. |
| 12 | Set up a tahoe client on a '''secure''' machine following the {{{"}}}[http://tahoe-lafs.org/source/tahoe-lafs/trunk/docs/quickstart.html quickstart]{{{"}}} and {{{"}}}[http://tahoe-lafs.org/source/tahoe-lafs/trunk/docs/running.html#Doing running]{{{"}}} instructions. |
13 | 13 | |
14 | 14 | Now that you have a tahoe client running (on a '''secure''' platform, like your laptop) the next step is to pu''blish'' the tiddlywiki, on the grid. To do this... |
… |
… |
|
24 | 24 | Use the CLI described under the [http://tahoe-lafs.org/source/tahoe-lafs/trunk/docs/running.html#Doing running] documentation. |
25 | 25 | |
| 26 | You need a tahoe directory to publish the tiddlywiki on. You could accomplish this by running the following steps in order, but it's preferable to put it together in a single command as demonstrated below. |
26 | 27 | |
27 | | tahoe mkdir |
| 28 | == Stepwise == |
| 29 | One, running: |
28 | 30 | |
29 | | tahoe cp wiki.html URI:DIR2:sdfsfsdfsdfsfgdsfbsbegndlbkus vl |
| 31 | {{{tahoe mkdir}}} |
| 32 | |
| 33 | generates such a directory and prints the ''write capability'' to it on sdout. |
| 34 | |
| 35 | Two, running: |
| 36 | |
| 37 | {{{tahoe cp wiki.html }}}''write capability'' |
| 38 | |
| 39 | publishes the wiki.html to the directory you created in the previous step. It's critical that the write capability is stored somewhere you can reliably get to, as it is the only way to access the tiddlywiki. Since this is the case I recommend the following single step publication... |
| 40 | |
| 41 | == Combined: == |
| 42 | |
| 43 | {{{tahoe cp wiki.html `tahoe mkdir | tee WRITECAPABILITY`}}} |
| 44 | |
| 45 | You can now access your Unhosted Wiki via: |
| 46 | |
| 47 | {{{http://localhost:3456/WRITECAPABILITY/wiki.html}}} |
| 48 | |