Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

The sample project layout from the book, "Two Scoops of Django: Best Practices for Django 1.5"

License

NotificationsYou must be signed in to change notification settings

hguochen/django-twoscoops-project

 
 

Repository files navigation

A project template for Django 1.5.

To use this project follow these steps:

  1. Create your working environment
  2. Install Django
  3. Create the new project using the django-two-scoops template
  4. Install additional dependencies
  5. Use the Django admin to create the project

note: these instructions show creation of a project called "icecream". Youshould replace this name with the actual name of your project.

Working Environment

You have several options in setting up your working environment. We recommendusing virtualenv to separate the dependencies of your project from your system'spython environment. If on Linux or Mac OS X, you can also use virtualenvwrapper to help manage multiple virtualenvs across different projects.

Virtualenv Only

First, make sure you are using virtualenv (http://www.virtualenv.org). Oncethat's installed, create your virtualenv:

$ virtualenv --distribute icecream

You will also need to ensure that the virtualenv has the project directoryadded to the path. Adding the project directory will allow django-admin.py tobe able to change settings using the --settings flag.

Virtualenv with virtualenvwrapper

In Linux and Mac OSX, you can install virtualenvwrapper (http://virtualenvwrapper.readthedocs.org/en/latest/),which will take care of managing your virtual environments and adding theproject path to the site-directory for you:

$ mkdir icecream$ mkvirtualenv -a icecream icecream-dev$ cd icecream && add2virtualenv `pwd`

Windows

In Windows, or if you're not comfortable using the command line, you will needto add a .pth file to the site-packages of your virtualenv. If you havebeen following the book's example for the virtualenv directory (pg. 12), thenyou will need to add a python pathfile named _virtualenv_path_extensions.pthto the site-packages. If you have been following the book, then yourvirtualenv folder will be something like:

`~/.virtualenvs/icecream/lib/python2.7/site-directory/`

In the pathfile, you will want to include the following code (fromvirtualenvwrapper):

import sys; sys.__plen = len(sys.path)/home/<youruser>/icecream/icecream/import sys; new=sys.path[sys.__plen:]; del sys.path[sys.__plen:]; p=getattr(sys,'__egginsert',0); sys.path[p:p]=new; sys.__egginsert = p+len(new)

Installing Django

To install Django in the new virtual environment, run the following command:

$ pip install django

Creating your project

To create a new Django project called 'icecream' usingdjango-twoscoops-project, run the following command:

$ django-admin.py startproject --template=https://github.com/twoscoops/django-twoscoops-project/archive/master.zip --extension=py,rst,html icecream

Installation of Dependencies

Depending on where you are installing dependencies:

In development:

$ pip install -r requirements/local.txt

For production:

$ pip install -r requirements.txt

note: We install production requirements this way because many Platforms as aServices expect a requirements.txt file in the root of projects.

Acknowledgements

  • Many thanks to Randall Degges for the inspiration to write the book and django-skel.
  • All of thecontributors to this project.

About

The sample project layout from the book, "Two Scoops of Django: Best Practices for Django 1.5"

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp