Mercurial > zeropaste
annotate README.md @ 239:a8942fab1f34
Update gems.
author | edogawaconan <me@myconan.net> |
---|---|
date | Mon, 07 Oct 2013 12:53:21 +0900 |
parents | 4a79bc78e90e |
children | 0b5f83d99c54 |
rev | line source |
---|---|
36 | 1 Zeropaste |
2 ========= | |
3 | |
203 | 4 A pastebin with some features: create and destroy (with key) pastes. |
62
de8da13eb7a6
Added link to running website in readme.
Edho Arief <edho@myconan.net>
parents:
36
diff
changeset
|
5 The one running on [0paste.com](http://0paste.com). |
36 | 6 |
7 Requirements: | |
8 | |
203 | 9 * Ruby 1.9 or up (JRuby 1.7 and Rubinius 2.0 should also work) |
36 | 10 * MySQL |
63 | 11 (nothing MySQL specific - can be easily changed if you know what you're doing) |
36 | 12 * Ruby Bundler |
63 | 13 |
14 Optional: | |
15 | |
16 * Newrelic account | |
17 | |
18 Suggested: | |
19 | |
20 * nginx | |
72
f43b4d5400ac
Added documentation how to post from CLI.
Edho Arief <edho@myconan.net>
parents:
63
diff
changeset
|
21 |
203 | 22 Installation |
23 ------------ | |
24 | |
25 Left as an exercise. | |
26 | |
72
f43b4d5400ac
Added documentation how to post from CLI.
Edho Arief <edho@myconan.net>
parents:
63
diff
changeset
|
27 Misc |
f43b4d5400ac
Added documentation how to post from CLI.
Edho Arief <edho@myconan.net>
parents:
63
diff
changeset
|
28 ---- |
f43b4d5400ac
Added documentation how to post from CLI.
Edho Arief <edho@myconan.net>
parents:
63
diff
changeset
|
29 |
f43b4d5400ac
Added documentation how to post from CLI.
Edho Arief <edho@myconan.net>
parents:
63
diff
changeset
|
30 Pasting from CLI: |
f43b4d5400ac
Added documentation how to post from CLI.
Edho Arief <edho@myconan.net>
parents:
63
diff
changeset
|
31 |
f43b4d5400ac
Added documentation how to post from CLI.
Edho Arief <edho@myconan.net>
parents:
63
diff
changeset
|
32 ...some commands... | curl 'http://0paste.com/pastes.txt' -F 'paste[paste]=<-' |
89
de4ce9ce1cc1
Added documentation on posting with gzip.
Edho Arief <edho@myconan.net>
parents:
72
diff
changeset
|
33 |
de4ce9ce1cc1
Added documentation on posting with gzip.
Edho Arief <edho@myconan.net>
parents:
72
diff
changeset
|
34 Or with gzip to save bandwidth: |
de4ce9ce1cc1
Added documentation on posting with gzip.
Edho Arief <edho@myconan.net>
parents:
72
diff
changeset
|
35 |
227 | 36 ...some commands... | gzip | curl 'http://0paste.com/pastes.txt' -F 'paste[paste_gzip]=<-' |
102 | 37 |
228 | 38 Privately: |
39 | |
40 ...some commands... | gzip | curl 'http://0paste.com/pastes.txt' -F 'paste[is_private]=1' -F 'paste[paste_gzip]=<-' | |
41 | |
102 | 42 Design |
43 ------ | |
44 | |
45 Current design is a bit crap. Suggestions and actual designs are welcome. |