Skip to main content

A stupid-simple blog app.

Project description

# Django-Basic-Blog

DBB is a dead simple blog app. It has entries and an RSS feed; not much else. Entries are expected to be in raw html.

## Quick start

Add “blog” to your INSTALLED_APPS setting like this:

INSTALLED_APPS = (
    ...
    'blog',
)

Include the blog URLconf in your project urls.py like this:

url(r'^blog/', include('blog.urls', namespace='blog')),

Run python manage.py migrate to create the blog models.

Add the settings vars for RSS fields: BLOG_TITLE and BLOG_DESCRIPTION.

Start the development server and visit http://127.0.0.1:8000/admin/

to create an entry (you’ll need the Admin app enabled).

Visit http://127.0.0.1:8000/blog/ to see the blog.

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-basic-blog-0.3.tar.gz (4.6 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