Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/brahle/django-quickstart

Shell scripts that help you quickly start a Django project.
https://github.com/brahle/django-quickstart

Last synced: 1 day ago
JSON representation

Shell scripts that help you quickly start a Django project.

Awesome Lists containing this project

README

        

Django-quickstart (version 0.1)
=================

Shell scripts that helps you quickly start a Django project.

Django's setup.py is only going so far in helping you start a Django project quickly. A lot of additional setup is needed if one wants to follow the best engineering practices. This script should help you kick start things "the right way" (in no means the only right way).

If you have any suggestions/feature requests/etc., please open an issue and I'll look into adding it.

TODO(brahle): This readme, like the project, is still under construction.

Motivation
==========

After reading a few blog posts on the internet that describe "the perfect Django/Python server" environment, there seemed to be quite a lot of stuff to do before one could actually start working on a project. To eliviete that problem, one could use a script that does most of that work for the engineer - which brings us to this project.

TODO(brahle): add links to the blog posts.

The perfect environment
=======================

Some say that the hardest part of starting a project is naming it. I believe it should be true, not because it is hard to name stuff, but because starting a project should be as easy as possible.

Therefore, the key thing this script needs to know is the name of the project, a.k.a. the `$PROJ_NAME`. You should strive to only use alphanumerics in the project name, printable characters at the very least.

Directory structure
-------------------

Moving your server to another location should also be as easy as possible. We therefore try to "infect" the file system as little as possible by creating folders that make sense and are (fairly) easy to move around to another server.

Theoretically, your project should be separated into a (at least) a few areas [citation needed]:

* Production (a.k.a. prod) - where the current stable version of your software is served from. It is what your users see.
* Development (a.k.a. dev) - where you actually make changes while you are developing the software. Your users shouldn't use this.
* Nightly (optional) - the current master branch of your repository. You can call this a Beta version.

This script creates only the first two areas, production and development.

The key directories you need to specify are:

* `$ROOT_DIR` - the directory where we will create the production file strucutre. By default, this is the directory the script has been called from.
* `$VIRTUALENV_DIR` - the directory where we will store the virtual environemnt. By default, this is `$ROOT_DIR/$PROJ_NAME-virtualenv`.
* `$PROJ_DIR` - the directory where we will store the django project files. It will be the production git repository from which we run our webserver. By default, this is `$VIRUTALENV_DIR/$PROJ_NAME`.
* `$LOG_DIR` - the directory where we store logs. By default, this is `$VIRTUALENV_DIR/log`
* `$DEV_DIR` - the directory where you will do the development from. By default, it is equal to `/home/$USER/dev/`.

The default tree structure is something like this, with `$DEV_DIR` being separate:

$ROOT_DIR
\-- $VIRTUALENV_DIR
\-- $PROJ_DIR
\-- $LOG_DIR

Additionally, if you want to use different templates, you can specify the `$TEMPLATE_DIR`. By default, it is equal to `$SCRIPT_DIR/templates/`.

Git repository
--------------

The `$PROJ_DIR` folder holds our original git repository, henceforth named origin. You can think of the `$PROJ_DIR` as constantly holding the git flow master branch. Your webserver will be serving your site from there so you want to
keep it as clean as possible.

We clone the origin repository to `$DEV_DIR`. You should be doing all of your work from there, and, once you are happy with the state of your repository, just push the changes to origin (to the `master` branch, just as git flow suggests). The provided `fabfile.py` can do that for you with the `deploy` command.

It is fairly easy to add aditional users - you just need to clone the origin repository. What is an issue with a setup like this is that you would need to expose the reposiotry to the outside world from your computer. Nowadays, it is popular to use web-based services that do this work for you, like [github](www.github.com). What we suggest you do, is the following:

1. Create an empty repository on github, bitbucket, wherever.
2. Add it as a remote to your development repository. (`git remote add `)
3. Rebase it onto your dev and check that nothing is broken.
4. Push the changes to origin.
5. Push the changes to the remote.

Once you do that, you will be able to share the goodies of having the repository publically hosted and being in complete controll of the production server. Only people with access to this server shall be able to affect production so you have that additional layer of security.

If you want, you can, however, enhance `fabfile.py` to connect to your server and update origin remotely. You don't want to store the ssh username and password (or any private key) information in the public repository as that would be akin to giving keys of your house to everyone. TODO(brahle): In the future, I may add support for that kind of remote workflow out-of-the-box.

Django configuration
====================

Notice how there is almost no mention of Django in the previos sections. That is because the configuration we did before would be the same no matter what kind of a Python project you are working on. Now, let us dvelve deeper into Django and try to fix a few annoyances that usually occur in a typical Django project.

Virtual environment
-------------------

The production environment is inside a [virtual environment](http://docs.python-guide.org/en/latest/dev/virtualenvs/) and we add the activation script of the environment to the git reposiotry.

TODO(brahle) **major**: Allow users from other servers to simply duplicate the virtual environment.

We install the following packages inside the virutal environment:

* [Django](https://www.djangoproject.com/)
* [South](http://south.aeracode.org/)
* [Fabric](https://github.com/mocco/django-fabric)
* [Gunicorn](http://gunicorn.org/)

Settings file
-------------

You don't want to have your security (easily) breached. Django has a bad habbit of saving the secret key inside the `settings.py` file. We, therefore, change that, and **automatically generate the secret key and store it in a separate file**. `.gitignore` will ensure that we won't commit it by accident.

We also split `settings.py` into two files:

1. `settings_global.py` which holds global settings used by all developers of the project. Almost the default `settings.py` with the improvement described above.
2. `settings_local.py`, which holds specific settings regarding the current server, like the database information. Although it is added to the `.gitignore`, be careful not to commit the unwanted changes to the repisorty, as that might leak your database username and password. It **takes precedence** over `settings_global.py`, so you can use it to override settings on a per-machine basis.

Static files
------------

...

Fabric
------

The provided `fabfile.py` offers you a few common workflows:

1. Merging your work to master
2. Quickly deploying your work to production

South
-----

Web-server
==========

Finally, it's time to get the show on the road and give the world a taste of . In other words, we want to fire up a webserver that we will use for production. "Why so soon?", you might ask, "I have pretty much nothing in the repository at this time". Well, future you will be happy that you have already done the legwork. So why not do ourselves a favour and start using real server from the get-go if we won't need to invest much energy. That way we at least won't need to pay the "relocation" cost later.

To help with that, this script creates a basic Gunicorn and Nginx configuration that we will use to serve the project.

Gunicorn
--------

Gunicorn, or Green Unicorn, is a Python server which will run multiple instance of our server.

Nginx
-----

Requirements
============

This script requires the following software to be installed:

* [Git](http://git-scm.com/)
* [Git flow](https://github.com/nvie/gitflow) (see [cheatsheet](http://danielkummer.github.io/git-flow-cheatsheet/))
* [nginx](http://nginx.org/)
* [Python](https://www.python.org/) (2.7+)
* [Python Virtualenv](https://virtualenv.pypa.io/en/latest/)
* [Python Pip](https://pip.pypa.io/en/latest/)
* [Python dev]

You can typically install them with `sudo apt-get install git-core git-flow python python-virtualenv python-pip python-dev`.

Additionally installed
----------------------

For all users:

* [Django](https://www.djangoproject.com/)

Inside a virtual envirnoment:

* [Django](https://www.djangoproject.com/)
* [South](http://south.aeracode.org/)
* [Fabric](https://github.com/mocco/django-fabric)
* [Gunicorn](http://gunicorn.org/)

Usage
=====

It is enough to invoke `django-quickstart.sh` from the console.

The script will then do the following:

1. Install Django for all users
2. Create a virtual envirnoment
3. Install requirements (Django, south, fabric, gunicorn) inside the
virtual environment
4. Create a Django project
5. Copy and complete the templates
6. Initialize empty database
7. Initialize south
8. Initialize fabric
9. Create a git repisotory
10. Create a development repository
11. Initiliaze nginx
12. Set up gunicorn
13. Collect static files
14. Optionally start gunicorn

Authors
=======

Bruno Rahle