The Django project driving dpaste.org
Find a file
2013-11-29 18:46:11 +01:00
docs Added bare installation docs. 2013-11-24 21:06:52 +01:00
dpaste Moved about page to 'paste' to fix 3rd party integration. 2013-11-29 18:46:11 +01:00
server More precise url handling 2013-09-27 19:28:07 +00:00
.coverage.rc Omit settings from coverage. 2013-11-25 23:30:08 +01:00
.coveralls.yml Coveralls 2013-11-25 00:08:31 +01:00
.gitignore Fixed local setting ignore. 2013-11-25 22:51:52 +01:00
.travis.yml No need to test against old django and python3 variants. 2013-11-26 11:10:11 +01:00
manage.py More project restructuring to make the project look more like a Django 1.5 project. 2013-03-19 13:54:25 +01:00
README.md Updated readme. 2013-11-26 11:40:36 +01:00
requirements.txt Dev on Django 1.6 2013-11-29 17:41:57 +01:00
runtests.py Fixed tox version 2013-11-26 12:29:34 +01:00
setup.py Added Django to the setup requirements. It was there already due that mptt has it in the list, also its tested now extensively. 2013-11-25 23:44:17 +01:00
tox.ini Store tox files in dropbox. 2013-11-26 11:09:24 +01:00

dpaste

Build Status Coverage Status

dpaste is a Django based pastebin. It's intended to run separatly or installed into an existing Django project.

You can find a live example on http://dpaste.de/

Testing

dpaste is continuously tested on Travis. You can also run the test suite locally with tox:

$ pip install tox
$ tox

A more manual approach is installing it all by hand in a virtual environment. This is also the preferred way local development:

$ pip install -e .
$ pip install -r requirements.txt
$ python runtests.py