illagrenan / django-cookiecutter-template

Personal cookiecutter template based on https://github.com/pydanny/cookiecutter-django.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django project template

Travis CI Badge Updates Python 3

Use this template

Install cookiecutter:

pip install cookiecutter --upgrade

Download and run template:

cookiecutter https://github.com/illagrenan/django-cookiecutter-template.git

Setup Django project

  1. Setup virtualenv:
cd ...
virtualenv data/.venv
.\activate.ps1
python -m pip install -U pip
pip install setuptools ipython pyreadline wheel --upgrade
  1. Install all requirements:
npm install -g bower
pip install -r requirements/local.txt --upgrade --use-wheel
bower install
  1. Create database

  2. Migrate and run:

cd src
python manage.py check
# System check identified no issues (0 silenced).
python manage.py migrate
python manage.py runserver

Other

Credits

License

The MIT License (MIT)

Copyright (c) 2015–2016 illagrenan

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Personal cookiecutter template based on https://github.com/pydanny/cookiecutter-django.

License:MIT License


Languages

Language:Python 66.9%Language:HTML 14.9%Language:Batchfile 9.7%Language:JavaScript 6.0%Language:Shell 2.2%Language:PowerShell 0.2%