Quick Start
Welcome to the SaaS Auth API documentation! This guide will help you get started with implementing authentication and authorization in your SaaS application.
Prerequisites
Before you begin, make sure you have:
- Go 1.24.1 or higher installed
- Docker and Docker Compose installed
- Basic understanding of REST APIs and authentication concepts
Installation
- Clone the repository:
git clone https://github.com/yersonargotev/saas-auth-api.gitcd saas-auth-api
- Set up your environment variables:
cp .env.example .env
- Start the development environment:
docker-compose -f docker-compose.dev.yml up
Basic Usage
Authentication
The API provides several endpoints for user authentication:
POST /api/v1/auth/register
- Register a new userPOST /api/v1/auth/login
- Login with existing credentialsPOST /api/v1/auth/refresh
- Refresh access tokenPOST /api/v1/auth/logout
- Logout user
Authorization
For protected routes, include the JWT token in the Authorization header:
Authorization: Bearer <your_jwt_token>
Next Steps
- Review the API Documentation for detailed endpoint information
- Check out the Development Guide for local development setup
- Follow the Security Guidelines for best practices
Support
If you encounter any issues or have questions:
- Open an issue on GitHub
- Join our Discord community