Skip to content

found-it/todoapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

abff28d · Jan 6, 2022
Aug 12, 2020
May 27, 2020
Jun 28, 2021
May 16, 2020
May 25, 2020
Aug 11, 2020
Jun 2, 2020
Aug 12, 2020
Jun 2, 2020
Jan 6, 2022
May 21, 2020
Jun 11, 2020

Repository files navigation

Todo API Server

Convenient and secure note server. Allows users to easily store todo tasks that are accessible from anywhere.

Installation

This server is designed to run in a cloud environment for easy access from any command line. It can also be run as a docker container using the Dockerfile, just make sure you forward port 9000.

To run the docker container on your local machine, use the following command

docker run -d --name todoapi --mount source=tododb,target=/mnt/data/ -p 9000:9000 jpetersenames/todoapi:latest

Usage

There are a few routes available through the API

Get the system hostname

<host>:9000/api/system

Create a task

<host>:9000/api/create

List a single task

<host>:9000/api/tasks/{id}

List all tasks

<host>:9000/api/tasks

Update a single task

<host>:9000/api/update/{id}

Delete a single task

<host>:9000/api/delete/{id}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published