A frontend application for managing lists (TODO lists, grocery lists, etc.) using React, Redux Toolkit, and Tailwind CSS.
To install the dependencies, run the following command:
npm install
To build the project for production, run:
npm run build
The build artifacts will be stored in the dist
directory.
The frontend communicates with the backend API using the listsApi
module. The base URL for the API is /api/clarion-app/lists
.
The listsApi
module provides the following endpoints:
getLists
: Fetches all lists.getList
: Fetches a specific list by ID.createList
: Creates a new list.updateList
: Updates a specific list by ID.deleteList
: Deletes a specific list by ID.cloneList
: Clones a specific list by ID.
The application includes the following routes:
/clarion-app/lists
: Displays a list of all lists./clarion-app/lists/:name
: Displays a specific list by name.
The application includes a menu entry for managing lists:
- List Manager
- Lists:
/clarion-app/lists
- Lists:
This project is licensed under the MIT License. See the LICENSE file for more information.
Tim Schwartz [email protected]