aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f1bdbab
--- /dev/null
+++ b/README.md
@@ -0,0 +1,11 @@
+### Flask-Pastebin
+
+This is a fork of [mitsuhiko/pastebin](https://github.com/mitsuhiko/flask-pastebin)
+
+#### How to use
+
+ 1. make a virtualenv
+ 2. `pip install -r requirements.txt`
+ 3. `cp config.cfg.tpl config.cfg`
+ 4. `python manage.py initdb`
+ 5. `python manage.py server`
bgstack15