Getting Started
Quick start guide for setting up and using the C15T Backend package, including installation, basic configuration, and common issues.
Welcome to C15T Backend! This guide will help you get started with the consent management system.
Installation
Install the package using your preferred package manager:
Basic Usage
Create an instance of C15T:
For more details on instance configuration, see Core Concepts.
Configuration
Basic Options
With Plugins
Learn more about plugins in the Plugin System documentation.
Database Setup
Memory Adapter (Development)
Kysely Adapter (Production)
For more database options and configuration, see Database Adapters.
Handling Requests
Learn more about request handling in Core Concepts.
Next Steps
- Learn about Core Concepts to understand the system architecture
- Explore Database Adapters for different storage options
- Check out the Plugin System for extensibility
- Review API Endpoints for available functionality
Common Issues
Database Connection Issues
If you're having trouble connecting to the database:
- Check your connection string
- Verify database credentials
- Ensure the database is running
- Review Database Adapters for more details
Authentication Problems
For authentication issues:
- Verify your JWT secret
- Check token expiration
- Review Authentication documentation
Plugin Loading
If plugins aren't loading:
- Check plugin dependencies
- Verify plugin order
- Review Plugin System documentation