dpaste is a Django based pastebin. It's intended to run separately but its also possible to be installed into an existing Django project like a regular app.
Project description
dpaste is a Django based pastebin. It’s intended to run separately but its also possible to be installed into an existing Django project like a regular app.
You can find a live example on http://dpaste.de/
Testing and local development
dpaste is continuously tested on Travis. You can also run the test suite locally with tox:
$ cd dpaste/ $ pip install tox $ tox
A more manual approach is installing it all by hand in a virtual environment. This is also the preferred way to setup an environment for local development:
$ cd dpaste/ $ pip install -e . $ pip install -r requirements.txt $ python runtests.py
Integrate dpaste into an existing project
Dpaste needs at least Django 1.4+ and is tested on Python 2.7 as well as Python 3.3.
Install the latest dpaste release in your environment. This will install all necessary dependencies of dpaste as well:
pip install dpaste
Add dpaste and (preferred) south to your INSTALLED_APPS:
INSTALLED_APPS = ( 'django.contrib.sessions', 'django.contrib.staticfiles', # ... 'mptt', 'dpaste', # 'south', (supported) )
Add dpaste and if you want the dpaste_api to your urlpatterns:
urlpatterns = patterns('', # ... url(r'pastebin/', include('dpaste.urls.dpaste')), url(r'pastebin/api/', include('dpaste.urls.dpaste_api')), )
Finally just syncdb or if you use South, migrate:
manage.py migrate dpaste
Do not forget to setup a cron job to purge expired snippets. You need to run the management command cleanup_snippets. A cron job I use looks like:
30 * * * * /srv/dpaste.de/bin/python /srv/dpaste.de/bin/manage.py cleanup_snippets > /dev/null
Note also that dpaste does not come with Django admin integration. You need to setup an register the models in an admin.py yourself.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dpaste-2.0.tar.gz
.
File metadata
- Download URL: dpaste-2.0.tar.gz
- Upload date:
- Size: 122.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8df24ab3afab1d3923cb3f834f7565c5a46b51825c218601de196a92f0fd2dc2 |
|
MD5 | 65592d0cca53ed402cedbd72deac3ea2 |
|
BLAKE2b-256 | f31a6051dd549789d76c41403997a00b3de2c5425c9bb4ed0b1c30307807bb2b |