aboutsummaryrefslogtreecommitdiffstats
path: root/requirements.txt
AgeCommit message (Collapse)Author
2017-01-16requirements.txt: update to latest tested Django versionPaul Eggleton
I neglected to update this at the time I updated the README recently. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2016-09-20Update to Django 1.8Paul Eggleton
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2016-09-20Drop south migrationsPaul Eggleton
These cannot be used with Django 1.8 and thus we need to remove them. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2016-06-12Upgrade to Django 1.6+Paul Eggleton
I'd like to be upgrading to 1.8 but that causes problems with South, and we're not quite ready to dispense with our existing migrations yet. Part of the implementation for [YOCTO #9620]. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2015-10-07requirements.txt: added GitPythonAlex Franco
As it is needed for layerindex anyway [YOCTO #7575] Signed-off-by: Alex Franco <alejandro.franco@linux.intel.com>
2014-09-24adding CORS policy for the APIAlexandru DAMIAN
We add the corsheaders application in order to enable the CORS policy for the read-only REST API. This is needed to allow AJAX queries to the layerindex application from a browser environment. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
2014-09-24expose REST API for layerindexAlexandru DAMIAN
This patch enables a read-only REST API for the layerindex application using Django REST Framework. The objects of types Branch, LayerBranch and LayerItem are exposed to queries so that the layerindex application can function as a Layer Source in Toaster. The library dependencies are documented in the requirements.txt file. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
2014-09-24adding environment description for virtualenvAlexandru DAMIAN
General practice influenced by heroku.com is to create a requirements.txt documenting the python library dependencies for the project. This allows a user to easy setup a running environment for the project using virtualenv and pip. Extending .gitignore to ignore venv (reserved for virtualenv use) and vim swap files. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>