GitXplorerGitXplorer
s

generator-django-agility

public
2 stars
1 forks
8 issues

Commits

List of commits on branch master.
Unverified
4481591c0cbe68ff6ffc623b267565f0e6d28beb

version 0.1.2

ssobolevn committed 9 years ago
Unverified
a6e1f8b524847ea8f271b306aebf9720e96a4f16

version 0.1.1

ssobolevn committed 9 years ago
Unverified
88dd1ea0ca0af0cb2f032f4d76c99587ae33a00d

version 0.1.1

ssobolevn committed 9 years ago
Unverified
7e4bbc85443f6abbf01fee958c849f356671bd2e

version 0.1.1

ssobolevn committed 9 years ago
Unverified
5e602067534cd6d9768ba693bc3815c0af44c664

Merge branch 'dev'

ssobolevn committed 9 years ago
Unverified
4c95b427a152f6e2b8ab7ad91ec29c0ac41798de

TEMPLATE_DEBUG fix

ssobolevn committed 9 years ago

README

The README file for this repository.

generator-django-agility

Build Status npm version

Yeoman generator

Django agility scaffolding generator screenshot

Getting Started

Prerequirements

You will need Python 2.7 up-and-runnig to work with the project generated by django-agility.

Why 2.7? Because Python 3.x is not yet supported.

Result

├── CONTRIBUTING.md
├── LICENSE.md
├── MANIFEST.in
├── README.md
├── bower.json
├── config
│   └── config.secret
├── manage.py
├── package.json
├── requirements
│   ├── _base.txt
│   ├── _env.txt
│   ├── development.txt
│   ├── production.txt
│   └── testing.txt
├── scss
│   ├── functions
│   │   ├── functions.scss
│   │   └── mixins.scss
│   ├── main.scss
│   ├── modules
│   │   └── all.scss
│   └── partials
│       ├── brand.scss
│       └── fixes.scss
├── setup.cfg
├── static
│   ├── build
│   ├── css
│   ├── img
│   ├── js
│   └── var
├── templates
│   ├── _layouts
│   │   └── base.html
│   ├── status_pages
│   │   ├── 400.html
│   │   ├── 403.html
│   │   ├── 404.html
│   │   └── 500.html
│   └── txt
│       ├── crossdomain.xml
│       ├── humans.txt
│       ├── robots.txt
│       └── sitemap.xml
├── main_app
│   ├── __init__.py
│   ├── admin.py
│   ├── forms.py
│   ├── migrations
│   │   └── __init__.py
│   ├── models.py
│   ├── static
│   │   └── main_app
│   ├── templates
│   │   └── main_app
│   ├── tests
│   │   └── __init__.py
│   ├── urls.py
│   └── views.py
└── yo_test
    ├── __init__.py
    ├── settings
    │   ├── __init__.py
    │   ├── components
    │   │   ├── __init__.py
    │   │   └── common.py
    │   └── environments
    │       ├── __init__.py
    │       ├── development.py
    │       ├── production.py
    │       └── testing.py
    ├── urls.py
    └── wsgi.py

Install Python packages

Highly recommended:

pip install virtualenvwrapper

Or just create and activate your virtualenv the way you like.

Install Yeoman and a generator

npm install -g yo
npm install -g generator-django-agility

Running

mkdir example && cd example

# If you are using virtualenvwrapper:
mkvirtualenv example

yo django-agility

To start new Django app use:

yo django-agility:startapp app_name

Change log

View the Changelog

License

MIT