django-project-template icon indicating copy to clipboard operation
django-project-template copied to clipboard

Django project layout to quickly start build fantastic websites! (included npm, libsass, frontend setup and base Django apps)

.. TODO: Complete the README descriptions and "about" section.{% if False %}{# Hiding GitHub README #}

.. image:: https://img.shields.io/travis/edoburu/django-project-template/master.svg?branch=master :target: http://travis-ci.org/edoburu/django-project-template .. image:: https://img.shields.io/codecov/c/github/edoburu/django-project-template/master.svg :target: https://codecov.io/github/edoburu/django-project-template?branch=master

Django project template

This project template creates a Django 1.11 / 2.0 project with a base set of applications

Features

Installed apps:

  • Django 1.11+
  • MySQLdb or Psycopg2
  • py.test_ and coverage setup
  • Pillow_
  • SORL-Thumbnail_
  • IPython_ + ptpython_
  • Raven_
  • django-admin-tools_
  • django-analytical_
  • django-axes_
  • django-compressor_
  • django-crispy-forms_
  • django-debugtools_
  • django-environ_
  • django-filebrowser-no-grapelli_
  • django-fluent-dashboard_
  • django-healthchecks_
  • django-webmaster-verification_

Configured URLs:

  • /robots.txt
  • /sitemap.xml
  • /admin/

Templates:

  • base.html
  • 403.html
  • 404.html
  • 500.html

Features:

  • 12factor app settings
  • WSGI deployment scripts
  • CSS and JavaScript paths configured
  • HTML5shiv + jQuery Installed
  • Bootstrap 3 based CSS reset
  • Dockerfile available
  • Gulpfile with SASS_, LiveReload_ and spritesmith_ setup (can be discarded)
  • Uptime monitoring URL (/api/health/)

Usage

Create a Django project:

.. code-block:: bash

mkdir my-website.com
cd my-website.com
django-admin.py startproject mywebsite . -e py,rst,example,gitignore,ini,min -n Dockerfile --template=https://github.com/edoburu/django-project-template/archive/master.zip

The layout uses an src folder. This allows you to create folders like docs, web, logs, etc at the toplevel. However, feel free to undo this change.

The remaining instructions - to start the development server - can be found in the generated README.rst file.

Django-fluent template

In a second branch, you'll find a project template for the django-fluent_ CMS:

.. code-block:: bash

mkdir my-website.com
cd my-website.com
django-admin.py startproject mywebsite . -e py,rst,example,gitignore,ini,min -n Dockerfile --template=https://github.com/edoburu/django-project-template/archive/django-fluent.zip

Optional features

As extra treat, the CSS files are easier to edit using SASS_. Changes are automatically visible in the browser using LiveReload_.

.. note::

This feature is optional. If you don't like to use it, the project already has a ``screen.css`` file which can be used and edited.
Feel free to remove those files in your own projects or fork (``gulpfile.js``, ``package.json``, and ``frontend/sass``).
However, we highly recommended to take a look at it.

Local testing

A quick script to allow local testing:

.. code-block:: bash

sed -i -e 's/{{ project_name }}/project_name/g' Dockerfile src/project_name/settings/*.py src/*.py src/frontend/views.py src/tests/test_wsgi.py
sed -i -e 's/{{ secret_key|safe }}/c6!x_#)=rim8n1j90f#al%m9i)zb2zu@i)846ps_&%-5@6o=q6/g' src/project_name/settings/defaults.py

.. _bpython: http://bpython-interpreter.org/ .. _django-analytical: https://github.com/jcassee/django-analytical .. _django-axes: https://github.com/django-security/django-axes .. _django-admin-tools: https://bitbucket.org/izi/django-admin-tools .. _django-compressor: https://django_compressor.readthedocs.io/ .. _django-crispy-forms: https://django-crispy-forms.readthedocs.io/ .. _django-debugtools: https://github.com/edoburu/django-debugtools .. _django-environ: https://github.com/joke2k/django-environ .. _django-filebrowser-no-grapelli: https://github.com/vdboor/django-filebrowser-no-grappelli-django14 .. _django-fluent-dashboard: https://github.com/edoburu/django-fluent-dashboard .. _django-healthchecks: https://github.com/mvantellingen/django-healthchecks .. _django-webmaster-verification: https://github.com/nkuttler/django-webmaster-verification .. _LiveReload: http://livereload.com/ .. _IPython: http://ipython.org/ .. _Pillow: https://github.com/python-pillow/Pillow .. _ptpython: https://github.com/jonathanslenders/ptpython .. _py.test: http://docs.pytest.org/ .. _Raven: https://github.com/getsentry/raven-python .. _SORL-Thumbnail: https://github.com/sorl/sorl-thumbnail .. _spritesmith: https://github.com/twolfson/gulp.spritesmith


.. {% else %}

{{ project_name|title }} Project

About

Describe your project here.

Prerequisites

  • Python >= 2.7
  • pip
  • virtualenv (virtualenvwrapper is recommended)

Installation

To setup a local development environment::

virtualenv env --prompt="({{ project_name }})"  # or mkvirtualenv {{ project_name }}
source env/bin/activate

cd src
make

cp {{ project_name }}/settings/local.py.example {{ project_name }}/settings/local.py  # To enable debugging
edit {{ project_name }}/settings/local.py    # Enter your DB credentials

sudo su - postgres
createuser {{ project_name }}  -P   # testtest is the default password
createdb --template=template0 --encoding='UTF-8' --lc-collate='en_US.UTF-8' --lc-ctype='en_US.UTF-8' --owner={{ project_name }} {{ project_name }}
exit

./manage.py migrate
./manage.py runserver

Compiling SASS files


Sass files are compiled to CSS during the development.
At the server, there is no need for installing development tools.

To setup your development system, install NodeJS from https://nodejs.org/.
On Mac OSX, you can also use ``brew install libsass node``.

Run the following command to compile SASS_ files::

    make watch

This will compile the files, and watch for changes.
It also has LiveReload_ support.
Install a browser plugin from: http://livereload.com/extensions/
and toggle the "LiveReload" button in the browser to see CSS changes instantly.

License
-------

Describe project license here.


.. Add links here:{% endif %}

.. _django-fluent: http://django-fluent.org/
.. _LiveReload: http://livereload.com/
.. _SASS: http://sass-lang.com/