juntagrico-webdav 1.6.0

Creator: codyrutscher

Last updated:

Add to Cart

Description:

juntagricowebdav 1.6.0

juntagrico-webdav











This app allows to include webdav folders into juntagrico in order to share files with your members.
This is an extension for juntagrico. You can find more information about juntagrico here
(https://github.com/juntagrico/juntagrico).
Installation
Install juntagrico-webdav via pip
$ pip install juntagrico-webdav

or add it in your projects requirements.txt
In settings.py add 'juntagrico_webdav', before juntagrico.
INSTALLED_APPS = [
...
'juntagrico_webdav',
'juntagrico',
]

To avoid reloading the files list all the time, configure caching in settings.py
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
'LOCATION': 'juntagrico_app_cache_table',
'TIMEOUT': None,
}
}

then run
$ python -m manage createcachetable

In your urls.py you also need to extend the pattern:
urlpatterns = [
...
path('', include('juntagrico_webdav.urls')),
]

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.