Django + MySQL + Fig = Example

This project is a simple example of a Fig project setup. It uses Django and MySQL.

Running Requirements

These two requirements must be setup and are outside the scope of this readme. The links above are a good starting place.

Start Fig

$ git clone https://github.com/sherzberg/fig-django-mysql-example.git
$ cd fig-django-mysql-example
$ fig up -d
$ fig run web python manage.py syncdb --noinput

Now browse to http://localhost:8000

The Django server was started in auto-reload mode and fig shares the current folder with the docker instance, so you can edit the python code to see changes!