Projects /Β adano
git clone https://molodetz.nl/retoor/adano.git
Adano Notes & Tags Template
This repository is a template for a notes and tags application.
Note:
This is not a standalone application for end-users. It serves as a clean, minimal base system.
The ADA project used this system as the foundation for its notes-taking application.
Due to its simplicity and clarity, I decided to give it its own dedicated repository.
Functionality
-
URL Endpoints:
-
GET /api/notesβ Retrieve all notes -
POST /api/notesβ Create a new note -
GET /api/notes/{id}β Retrieve a specific note -
PUT /api/notes/{id}β Update a note -
DELETE /api/notes/{id}β Delete a note -
GET /api/tagsβ Retrieve all tags -
POST /api/tagsβ Create a new tag -
GET /api/tags/{name}β Retrieve a specific tag -
PUT /api/tags/{name}β Update a tag -
DELETE /api/tags/{name}β Delete a tag -
POST /api/uploadβ Upload files -
GET /β Serve the frontend application -
GET /api/healthβ Health check endpoint
-
Note: /docs and /openapi.json are provided for API documentation.
Usage
This is a template. Customize and extend as needed for your projects.