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')),
)
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 details)
File details
Details for the file django-pressroom-0.6.tar.gz.
File metadata
- Download URL: django-pressroom-0.6.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
934be2159d9f23d0c36fd6589fcf345bd3b599bed8691b7d76201790625d21a8
|
|
| MD5 |
2571b153fe892d82b5f39cd72164d705
|
|
| BLAKE2b-256 |
10d3b7ee2be047d156ed009bf29315fc64a2c2319956b6b834e1f67db0cd28a7
|