Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exolever/django-filestack
https://github.com/exolever/django-filestack
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/exolever/django-filestack
- Owner: exolever
- License: other
- Created: 2019-03-24T10:42:09.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-30T10:01:27.000Z (about 5 years ago)
- Last Synced: 2024-11-08T11:53:04.583Z (about 2 months ago)
- Language: Python
- Size: 94.7 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
=============================
Django Filestack
=============================.. image:: https://badge.fury.io/py/django-filestack.svg
:target: https://badge.fury.io/py/django-filestack.. image:: https://requires.io/github/exolever/django-filestack/requirements.svg?branch=master
:target: https://requires.io/github/exolever/django-filestack/requirements/?branch=master
:alt: Requirements Status.. image:: https://travis-ci.org/exolever/django-filestack.svg?branch=master
:target: https://travis-ci.org/exolever/django-filestack.. image:: https://codecov.io/gh/exolever/django-filestack/branch/master/graph/badge.svg
:target: https://codecov.io/gh/exolever/django-filestack.. image:: https://sonarcloud.io/api/project_badges/measure?project=exolever_django-filestack&metric=alert_status
:target: https://sonarcloud.io/dashboard?id=exolever_django-filestackAdd Model support for Filestack files
Documentation
-------------The full documentation is at https://django-filestack.readthedocs.io.
Quickstart
----------Install Django Filestack::
pip install django-filestack
Add it to your `INSTALLED_APPS`:
.. code-block:: python
INSTALLED_APPS = (
...
'files.apps.FilesConfig',
...
)Add Django Filestack's URL patterns:
.. code-block:: python
from files import urls as files_urls
urlpatterns = [
...
url(r'^', include(files_urls)),
...
]Features
--------* TODO
Running Tests
-------------Does the code actually work?
::
source /bin/activate
(myenv) $ pip install tox
(myenv) $ toxCredits
-------Tools used in rendering this package:
* Cookiecutter_
* `cookiecutter-djangopackage`_.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage