2016-02-08 18:48:16 +01:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
|
|
|
<header>
|
|
|
|
<h1>{{ site.title }}</h1>
|
|
|
|
<p>{{ site.description }}</p>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
<section>
|
|
|
|
<h2>About {{ site.title }}</h2>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
{{ site.title }} is a small but powerful CalDAV (calendars, todo-lists) and CardDAV
|
|
|
|
(contacts) server, that:
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li>Shares calendars through CalDAV, WebDAV and HTTP.
|
|
|
|
<li>Shares contacts through CardDAV, WebDAV and HTTP.
|
|
|
|
<li>Supports events, todos, journal entries and business cards.
|
|
|
|
<li>Works out-of-the-box, no installation nor configuration required.
|
2016-08-11 19:03:50 +02:00
|
|
|
<li>Can warn users on concurrent editing.
|
2016-02-08 18:48:16 +01:00
|
|
|
<li>Can limit access by authentication.
|
|
|
|
<li>Can secure connections.
|
|
|
|
<li>Works with many CalDAV and CardDAV clients.
|
|
|
|
<li>Is GPLv3-licensed free software.
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<h2>Installation</h2>
|
|
|
|
<p>
|
|
|
|
{{ site.title }} is really easy to install and works out-of-the-box.
|
|
|
|
</p>
|
|
|
|
|
2017-05-27 12:06:41 +02:00
|
|
|
<pre>$ python3 -m pip install --upgrade radicale
|
2017-06-04 15:39:52 +02:00
|
|
|
$ python3 -m radicale --config "" --storage-filesystem-folder=~/.var/lib/radicale/collections</pre>
|
2016-08-10 18:08:40 +02:00
|
|
|
|
|
|
|
<p>
|
|
|
|
When your server is launched, you can check that everything's OK by going
|
|
|
|
to <a href="http://localhost:5232/">http://localhost:5232/</a> with your browser!
|
2017-06-25 11:02:36 +02:00
|
|
|
You can login with any username and password.
|
2016-08-10 18:08:40 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Want more? Why don't you check our wonderful
|
|
|
|
<a href="{{ site.baseurl }}/documentation">documentation</a>?
|
|
|
|
</p>
|
2016-02-08 18:48:16 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
2016-08-11 19:03:50 +02:00
|
|
|
<h2>What's New?</h2>
|
2017-05-27 11:27:18 +02:00
|
|
|
{% assign releases = site.github.releases | where:"draft",false | sort:"created_at" | reverse %}
|
|
|
|
{% assign latest_release = releases[0] %}
|
2016-02-08 18:48:16 +01:00
|
|
|
<p>
|
2017-05-27 11:27:18 +02:00
|
|
|
Latest version of {{ site.title }} is {{ latest_release.tag_name }},
|
|
|
|
released on {{ latest_release.created_at | date: "%B %-d, %Y" }}
|
2017-06-21 09:58:46 +02:00
|
|
|
(<a href="https://github.com/Kozea/{{ site.title }}/blob/master/NEWS.md">changelog</a>).
|
2016-02-08 18:48:16 +01:00
|
|
|
</p>
|
2016-02-08 19:00:12 +01:00
|
|
|
<aside><a href="{{ site.baseurl }}/news/">Read latest news…</a></aside>
|
2016-02-08 18:48:16 +01:00
|
|
|
</section>
|
|
|
|
</main>
|