Skip to content

A ToDo API that can be used with our courses that require an API to work with. Mostly to be used with front-end courses that need an API to communicate with.

License

Notifications You must be signed in to change notification settings

CodeSignal/learn_todo-api

Repository files navigation

Todo API

Todo API is a simple RESTful service for managing a to-do list, allowing users to create, read, update, and delete tasks.

Prerequisites

Quick Start

  1. Clone the repository:

    git clone https://github.com/matheusgalvao1/todo-api.git
    cd todo-api
  2. Build and start the application with Docker Compose:

    docker-compose up --build -d
  3. The API will be available at http://localhost:8000.

Authentication Methods

The API's authentication is configured through auth_config.yml in the root directory:

  1. No Authentication (none):

    auth:
      method: none

    All endpoints will be public.

  2. API Key Authentication (api_key):

    auth:
      method: api_key
      api_key: your-secure-api-key

    Clients must include the API key in the X-API-Key header.

  3. JWT Authentication (jwt):

    auth:
      method: jwt
      secret: your-jwt-secret

    Clients must obtain a JWT token via login/signup and include it in the Authorization: Bearer <token> header.

  4. Session Authentication (session):

    auth:
      method: session
      secret: your-session-secret

    Uses browser sessions for authentication.

Initial Data

The project comes with initial data, seeded at startup:

  • Todos: initial_todos.json
  • Users: initial_users.json

Running the API

Simply run:

python app/main.py

The API will read the configuration from auth_config.yml. If the file doesn't exist, it will default to no authentication.

About

A ToDo API that can be used with our courses that require an API to work with. Mostly to be used with front-end courses that need an API to communicate with.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •