Skip to content

davidachris/task-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tasks API Guide

Minimum Required Java Version: 17

MacOS, Linux, or Windows w/Git bash

  • ./bin/run.sh

Windows without Git bash

  • ./mvnw clean test package
  • java -jar target/*.jar

Or Run in Docker

The following endpoints are currently available

  • Get all tasks
    • GET "/tasks"
  • Get task by id
    • GET "/tasks/:id"
  • Create a task
    • POST "/tasks"
      • BODY: String title, String, description
  • Update a task by id
    • PUT "/tasks/:id"
      • Optional Params: String title, String description, Boolean completed

About

A Springboot Application to serve and create tasks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published