Skip to main content

A pressroom application for django.

Project description

Pressroom

Simple article management for the Django web framework.


Installation
============

Offical releases are available from http://pypi.python.org/pypi

easy_install django-pressroom

Tracking the Development Version
--------------------------------

The current development version of Pressroom can be checked out via Subversion from the project site using the following command:

svn checkout https://django-pressroom.googlecode.com/svn/trunk django-pressroom

If you wish to contribute to pressroom, here is how to set up your development environment

cd django-pressroom
virtualenv . --no-site-packages
source bin/activate
python bootstrap.py
bin/buildout -v
bin/django syncdb
bin/django runserver

browse to http://localhost:8000/


Configure Your Django Settings
------------------------------

Add 'pressroom' to your INSTALLED_APPS setting:

INSTALLED_APPS = (
# ...other installed applications,
'photologue',
'pressroom',
)

*** Confirm that your MEDIA_ROOT and MEDIA_URL settings are correct. ***

Sync Your Database
------------------

Run the Django 'syncdb' command to create the appropriate tables.


Instant Pressroom
---------------------

To use the included pressroom templates and views you need to first add pressroom to your projects urls.py file.
Note: django-photologue (http://code.google.com/p/django-photologue/) is a dependancy of pressroom

# urls.py:
urlpatterns += patterns('',
(r'^admin/(.*)', admin.site.root),
(r'^pressroom/', include('pressroom.urls')),
(r'^photologue/', include('photologue.urls')),
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-pressroom-0.6.tar.gz (10.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page