forked from sshirokov/PoopVolcano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
28 lines (18 loc) · 1.14 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
PoopVolcano is a clone of @pooptag. The greatest application in the history of computation.
WARNING: Use node version 0.4 (master).
Once you clone the code run:
$ git submodule update --init --recursive
To fetch all the dependencies, and you should be "good to go" for some value of the phrase.
The app uses the streaming API and Oauth to authenticate, so get yourself some keys if you intend to
try it out.
The app will create a unix-domain-socket repl in $(pwd)/repl.sock
you'll need something like socat to connect to that (socat ./repl.sock -)
If you aren't hardcore enough to remote into the app locally you can launch it with --repl to get one
bound to stdio right away.
The all is exposed in the repl as "$volcano" and you can close it with '$volcano.stop()' which should
"gracefully" bring down anything you may have been doing, including any connected REPLs.
FAQ:
Q: Why don't use a package manager like every other sane developer?
A: I don't like depending on a package manager to work and am quite content with submodules and
a small loader to find what I need. It also makes it easier to fetch everything you need using
just source control.