aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: f1bdbabd9ec1a7d7a3e38214c14558a7d90aa201 (plain)
1
2
3
4
5
6
7
8
9
10
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