Giter Site home page Giter Site logo

todo-backend's Introduction

todo-backend

TodoList API backend built in .NET and PostgreSQL

Table of Contents

Getting Started

Prerequisites

  • PostgreSQL
  • .NET 7.0
  • dotnet-ef

Installing

Clone the repository

$ git clone https://github.com/fzbian/todo-backend

Download the packages

$ dotnet restore

Config appsettings.json for database connection

"ConnectionStrings": {
    "WebApiDatabase": "Host=host; Database=db; Username=postgres; Password=pass"
}

Migrate the database

$ dotnet ef migrations add "init"
$ dotnet ef database update

Run program

$ dotnet run

Usage

Use HTTP methods (GET, POST, PUT, DELETE) to interact with the API endpoints.

Endpoints

Server health

  • Method: GET
  • Endpoint: /api/Todo
  • Description: Verify status server
  • Response: 200 OK

Get tasks

  • Method: GET
  • Endpoint: /api/Todo/GetTasks
  • Description: Get tasks.
  • Response: 200 OK

Get task by ID

  • Method: GET
  • Endpoint: /api/Todo/GetTasksById/{id}
  • Description: Get a task by ID.
  • Parameters:
    • id (Guid): Task ID.
  • Response: 200 OK

Create task

  • Method: POST
  • Endpoint: /api/Todo/CreateTask
  • Description: Create a new task.
  • Request Body: Task object in the request body.
  • Response: 200 OK

Update task

  • Method: PUT
  • Endpoint: /api/Todo/UpdateTask/{id}
  • Description: Update a task by ID.
  • Parameters:
    • id (Guid): Task ID.
  • Request Body: Updated task object.
  • Response: 200 OK

Check task

  • Method: PUT
  • Endpoint: /api/Todo/CheckTask/{id}/{completed}
  • Description: Check or uncheck a task.
  • Parameters:
    • id (Guid): Task ID.
    • completed (bool): Completion status.
  • Response: 200 OK or 500 Internal Server Error (in case of an exception)

Delete task

  • Method: DELETE
  • Endpoint: /api/Todo/DeleteTask/{id}
  • Description: Delete a task by ID.
  • Parameters:
    • id (Guid): Task ID.
  • Response: 200 OK

Contributing

Feel free to contribute to this project.

License

This project is licensed under the [MIT license] - see the LICENSE FILE file for details.

todo-backend's People

Contributors

fzbian avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.