mirror of
https://github.com/makefu/bump.git
synced 2024-03-22 11:32:52 +01:00
Merge branch 'master' of github.com:makefu/bump
This commit is contained in:
commit
119d2723b5
2 changed files with 40 additions and 3 deletions
14
COPYING
Normal file
14
COPYING
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
Version 2, December 2004
|
||||||
|
|
||||||
|
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim or modified
|
||||||
|
copies of this license document, and changing it is allowed as long
|
||||||
|
as the name is changed.
|
||||||
|
|
||||||
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. You just DO WHAT THE FUCK YOU WANT TO.
|
||||||
|
|
29
Readme.md
29
Readme.md
|
@ -2,7 +2,15 @@
|
||||||
Bump is a minimalistic self-hosted pastebin.
|
Bump is a minimalistic self-hosted pastebin.
|
||||||
It is written as a replacement for the gorgeous sprunge.us
|
It is written as a replacement for the gorgeous sprunge.us
|
||||||
|
|
||||||
# usage
|
## usage
|
||||||
|
|
||||||
|
$ curl <host>
|
||||||
|
Bump Usage:
|
||||||
|
> echo balls | curl -F "p=<-" <host>
|
||||||
|
< http://<host>/q9a1bfljzm
|
||||||
|
> curl <host>/q9a1bfljzm
|
||||||
|
< balls
|
||||||
|
Source at http://github.com/makefu/bump
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
|
@ -11,6 +19,21 @@ It is written as a replacement for the gorgeous sprunge.us
|
||||||
pip install -r deps.txt
|
pip install -r deps.txt
|
||||||
|
|
||||||
## Startup
|
## Startup
|
||||||
|
|
||||||
|
. bin/activate
|
||||||
|
cd bump
|
||||||
./run.sh
|
./run.sh
|
||||||
|
|
||||||
|
## Configure nginx
|
||||||
|
|
||||||
|
$EDITOR etc/bump.nginx.conf
|
||||||
|
cp etc/bump.nginx.conf /etc/nginx/conf.d
|
||||||
|
|
||||||
|
## Configure supervisor
|
||||||
|
|
||||||
|
$EDITOR etc/bump.supervisor.conf
|
||||||
|
cp etc/bump.supervisor.conf /etc/supervisor/conf.d/bump.conf
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
Copyright Felix Richter. All code is under WTFPL, see COPYING
|
||||||
|
|
Loading…
Reference in a new issue