Documentation menu

AuthKit

AuthKit-Lite quickstart

Clone, configure, and run the AuthKit-Lite Spring Boot authentication foundation.

Clone

Terminal
git clone https://github.com/buildbasekit/AuthKit-Lite.git
cd AuthKit-Lite

Configure

.env
DATABASE_URL=jdbc:mysql://localhost:3306/authkit
DATABASE_USERNAME=app
DATABASE_PASSWORD=<local-password>
JWT_SECRET=<at-least-256-bit-secret>

Run

Use the included Postman collection to verify registration, login, refresh, profile, and role-protected endpoints.

Terminal
./mvnw spring-boot:run