https://github.com/modoboa/modoboa-radicale
The Radicale frontend of Modoboa
https://github.com/modoboa/modoboa-radicale
calendar carddav modoboa radicale
Last synced: 2 months ago
JSON representation
The Radicale frontend of Modoboa
- Host: GitHub
- URL: https://github.com/modoboa/modoboa-radicale
- Owner: modoboa
- License: mit
- Created: 2015-02-11T11:40:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-12-02T16:30:19.000Z (6 months ago)
- Last Synced: 2025-03-31T12:06:30.514Z (2 months ago)
- Topics: calendar, carddav, modoboa, radicale
- Language: Python
- Homepage:
- Size: 355 KB
- Stars: 21
- Watchers: 6
- Forks: 14
- Open Issues: 18
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
modoboa-radicale
================|gha| |codecov|
The `Radicale `_ frontend of Modoboa.
Installation
------------Install this extension system-wide or inside a virtual environment by
running the following commands::$ pip install https://github.com/modoboa/caldav/tarball/master#egg=caldav
$ pip install modoboa-radicaleEdit the settings.py file of your modoboa instance and apply the following modifications:
- add ``modoboa_radicale`` inside the ``MODOBOA_APPS`` variable like this::
MODOBOA_APPS = (
'modoboa',
'modoboa.core',
'modoboa.lib',
'modoboa.admin',
'modoboa.transport',
'modoboa.relaydomains',
'modoboa.limits',
'modoboa.parameters',
# Extensions here
# ...
'modoboa_radicale',
)- Add the following at the end of the file::
from modoboa_radicale import settings as modoboa_radicale_settings
modoboa_radicale_settings.apply(globals())Run the following commands to setup the database tables::
$ cd
$ python manage.py migrate
$ python manage.py load_initial_data
$ python manage.py collectstatic
Finally, restart the python process running modoboa (uwsgi, gunicorn,
apache, whatever).For developpers
---------------The frontend part of this plugin is developed with `VueJS 2 `_ and
requires `nodejs `_ and `webpack `_.Once nodejs is installed on your system, run the following commands::
$ cd frontend
$ npm install
$ npm run serveTo update dist files (the ones that will be distributed with the plugin), run::
$ npm run build
.. |gha| image:: https://github.com/modoboa/modoboa-radicale/actions/workflows/plugin.yml/badge.svg
:target: https://github.com/modoboa/modoboa-radicale/actions/workflows/plugin.yml
.. |codecov| image:: http://codecov.io/github/modoboa/modoboa-radicale/coverage.svg?branch=master
:target: http://codecov.io/github/modoboa/modoboa-radicale?branch=master