Skip to content

Latest commit

 

History

History
68 lines (52 loc) · 1.57 KB

README.md

File metadata and controls

68 lines (52 loc) · 1.57 KB

generator-django Stories in Ready Build Status

A generator for Yeoman.

Getting Started

To install generator-django from npm, run:

$ npm install -g generator-django

Then make a virtualenv and cd into it:

$ virtualenv myproject --no-site-packages
$ cd myproject

Finally, make your project directory and initiate the generator:

$ mkdir myproject && cd myproject
$ yo django

What do you get?

You get the following directory structure:

.
├── apps
├── bin
│   └── watchmedo.sh
├── bower.json
├── fabfile.py
├── __init__.py
├── libs
├── package.json
├── README.md
├── requirements
│   ├── COMMON
│   ├── DEVELOPMENT
│   ├── PRODUCTION
│   └── TESTING
├── settings
│   ├── common.py
│   ├── development.py
│   ├── __init__.py
│   └── testing.py
├── static
│   ├── css
│   ├── img
│   ├── js
│   └── vendor
│       └── bower
└── templates
    └── layout

License

MIT License

Bitdeli Badge