toobit / pinax

a Django-based platform for rapidly developing websites

Home Page:http://pinaxproject.com/pinax/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pinax

Join us on Slack

Pinax is an open-source platform built on the Django Web Framework. It is an ecosystem of reusable Django apps, themes, and starter project templates. This collection can be found at http://pinaxproject.com.

Getting Started

To give you an example of how one would use Pinax now to start a new site based on the Account Starter Project follow these steps in your shell:

pip install virtualenv
virtualenv mysiteenv
source mysiteenv/bin/activate
pip install Django==1.8.3
django-admin.py startproject --template=https://github.com/pinax/pinax-project-account/zipball/master mysite
cd mysite
pip install -r requirements.txt
./manage.py migrate
./manage.py loaddata sites
./manage.py runserver

Documentation

The Pinax documentation is available at http://pinaxproject.com/pinax/.

Code of Conduct

In order to foster a kind, inclusive, and harassment-free community, the Pinax Project has a Code of Conduct, which can be found here http://pinaxproject.com/pinax/code_of_conduct/.

Pinax Project Blog and Twitter

For updates and news regarding the Pinax Project, please follow us on Twitter at @pinaxproject and check out our blog http://blog.pinaxproject.com.

Updating Docs

The docs live online at http://pinaxproject.com/pinax/. You can update them by running:

mkdocs gh-deploy

About

a Django-based platform for rapidly developing websites

http://pinaxproject.com/pinax/