Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/Celaya55/app-cr/llms.txt

Use this file to discover all available pages before exploring further.

Introduction

App CR is a task management API built with Express.js, Prisma ORM, and PostgreSQL. It provides a backend foundation for managing users and tasks, with JWT authentication dependencies ready for implementation.

Quickstart

Get started with App CR in minutes

API Reference

Explore all available endpoints

Authentication

Learn about JWT authentication

Database Schema

Understand the data model

Key Features

User Registration

Basic user registration endpoint with Prisma ORM and PostgreSQL

Database Foundation

Complete Prisma schema for Users and Tasks with relationships

Auth Dependencies

JWT and bcrypt packages installed and ready for authentication implementation

Docker Ready

Production-ready Docker Compose setup with PostgreSQL database

Quick Example

Create a new user and authenticate:
# Create a new user
curl -X POST http://localhost:3000/usuarios \
  -H "Content-Type: application/json" \
  -d '{
    "email": "user@example.com",
    "password": "securepassword"
  }'
Check out the Quickstart guide to set up your development environment and start making API calls.