Django migrations with South
South is an “intelligent schema and data migrations for django projects”In this post we will go through the steps required in order to set up south in your django project.
INSTALLED_APPS = ( 'chartkick', ) import chartkick STATICFILES_DIRS = ( chartkick.js(), )
<script src="http://www.google.com/jsapi"></script> <script src="static/chartkick.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script src="http://code.highcharts.com/highcharts.js"></script> <script src="static/chartkick.js"></script>