Fix toast text properly
Remove unused class
Add demo page link
Lightweight self-hostable to-do lists app with LDAP authentication.
Demo page
(No persistent data; Reload to reset the list.)
ou
in items
directory, which is mounted to the Docker container.default -> green -> yellow -> red -> default
)ou
: For instance, if your DN is cn=user,ou=people,dc=example,dc=com
you can manage items in the people.json
. However, you will not be able to view items in users.json
, which can only be accessed by those with ou=users
.items
directory, and .env
file with the following variables:LTD_DOMAIN=yourdomain.com
LTD_SECRET_KEY=SECRET_STRING_TO_ENCODE_JWT
LTD_NETWORK=ldap://ldap:3890
LTD_API_TOKEN=SECRET_KEY_TO_POST_ITEM_VIA_API
sudo docker run -d -v /path/to/items:/ltd/items --env-file /path/to/.env --network="ldap_docker_network_name_if_needed" --name ltd -p 8080:8080 kyoheiudev/ltd:1.4.2
To post an item via API, use HTTP POST
request:
POST /api/post
Content-Type: application/json
Authorization: LTD_API_TOKEN
{
"value": "new item",
"ou": "people"
}