Go to file
2016-12-07 23:06:23 -05:00
dbfilestorage Initial commit after moving from Gitlab 2016-12-07 22:50:48 -05:00
docs Initial commit after moving from Gitlab 2016-12-07 22:50:48 -05:00
tests Initial commit after moving from Gitlab 2016-12-07 22:50:48 -05:00
.gitignore Initial commit after moving from Gitlab 2016-12-07 22:50:48 -05:00
.gitlab-ci.yml Initial commit after moving from Gitlab 2016-12-07 22:50:48 -05:00
LICENSE.txt Initial commit after moving from Gitlab 2016-12-07 22:50:48 -05:00
manage.py Initial commit after moving from Gitlab 2016-12-07 22:50:48 -05:00
README.rst update readme to use list, oops 2016-12-07 23:06:23 -05:00
requirements.txt Initial commit after moving from Gitlab 2016-12-07 22:50:48 -05:00
setup.py update setup and readme 2016-12-07 23:05:01 -05:00

Django-dbfilestorage
--------------------

.. image:: https://circleci.com/gh/tyrelsouza/django-dbfilestorage/tree/master.svg?style=svg
    :target: https://circleci.com/gh/tyrelsouza/django-dbfilestorage/tree/master

Custom file storage for Django that stores file data and content type in the database.
Easy to use for testing when you don't care about a filename, and just want to test file data.

Intended to be used in tests, never in production.


TODO
====

More Tests
Different django and different python versions.
Store original filename in a field, maybe?
Use original filename instead, so it honors the "upload_to" parameter.


CHANGELOG
=========

- 2016-12-07 [Tyrel Souza] Update Readme, move to github, gitlab wasn't functioning properly.
- 2016-12-07 [Tyrel Souza] Initial commits and basic project setup