• Stars
    star
    149
  • Rank 247,159 (Top 5 %)
  • Language
    Python
  • Created almost 13 years ago
  • Updated about 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

To use run: django-admin.py startproject --template https://github.com/amccloud/django-project-skel/zipball/master --extension py,md,gitignore yourprojectname

{{ project_name|title }} Django Project

Prerequisites

  • python >= 2.5
  • pip
  • virtualenv/wrapper (optional)

Installation

Creating the environment

Create a virtual python environment for the project. If you're not using virtualenv or virtualenvwrapper you may skip this step.

For virtualenvwrapper

mkvirtualenv --no-site-packages {{ project_name }}-env

For virtualenv

virtualenv --no-site-packages {{ project_name }}-env
cd {{ project_name }}-env
source bin/activate

Clone the code

Obtain the url to your git repository.

git clone <URL_TO_GIT_RESPOSITORY> {{ project_name }}

Install requirements

cd {{ project_name }}
pip install -r requirements.txt

Configure project

cp {{ project_name }}/__local_settings.py {{ project_name }}/local_settings.py
vi {{ project_name }}/local_settings.py

Sync database

python manage.py syncdb

Running

python manage.py runserver

Open browser to http://127.0.0.1:8000

More Repositories

1

backbone-tastypie

Modifications to Backbone's Model an Collection so that they play nice with django-tastypie. Includes a way to easily paginate over a resource list and a way to access the associated meta information.
JavaScript
99
star
2

backbone-safesync

A wrapper around Backbone.sync to prevent model and collection request race conditions.
JavaScript
81
star
3

backbone-bindings

Bi-directional bindings between Backbone.View elements and Backbone.Model attributes.
JavaScript
67
star
4

storybook-addons-abstract

Storybook addon for linking Abstract layer and collection shares to stories. Example:
TypeScript
62
star
5

django-firstclass

Firstclass is a proxy email backend for Django that allows for global email transformations such as automatically creating a plain text version of html emails or automatically creating an online version of the email that can be read in browser.
Python
51
star
6

backbone-dotattr

Access deep Backbone.js model attributes with dot-syntax.
JavaScript
49
star
7

django-stripe

A user subscription Django app that integrates with Stripe - http://stripe.com/
Python
38
star
8

backbone-stripe

A Backbone.Model wrapper around stripe.js.
JavaScript
8
star
9

await-component

Code-splitting with import() and loading boundaries
JavaScript
7
star
10

django-tropo-webapi

Python
6
star
11

redy

Python Redis ORM
Python
5
star
12

backbone-hostname

Globally set the hostname for all Backbone models and collections.
JavaScript
5
star
13

apy

APY is a generic Python binding for interacting with almost any REST-ful API service.
Python
4
star
14

glusterfs-cookbook

GlusterFS Chef Cookbook
Ruby
2
star
15

web

Repo for amccloud.com
JavaScript
1
star
16

zappos-code

My entry for the Zappos code challenge. http://zcode.zappos.com/
JavaScript
1
star