Loading...

Try It Now

Use these demo credentials to explore the application

Standard User

Explore user-facing features like dashboard, orders, and downloads

Password••••••••

Administrator

Access admin panel, user management, audit logs, and system controls

Password••••••••

Demo environment • Data resets periodically • Do not use real email addresses

Authentication Demo

Secure Authentication in Action

Watch how our comprehensive authentication system handles user registration, login, email verification, and multi-factor authentication.

  • JWT with automatic token refresh
  • Email verification flow
  • TOTP-based 2FA
  • Rate limiting protection
// Login endpoint example
POST /auth/login
{
  "email": "[email protected]",
  "password": "securePassword123!",
  "mfaCode": "123456" // if MFA enabled
}

// Response
{
  "accessToken": "eyJhbGciOiJIUzI1NiIs...",
  "refreshToken": "eyJhbGciOiJIUzI1NiIs...",
  "user": { ... }
}
// Admin operations
GET /admin/users
  ?page=1&limit=10
  &search=email
  &role=user

// Response
{
  "users": [...],
  "total": 150,
  "page": 1,
  "limit": 10
}
Admin Panel Demo

Powerful Admin Tools

Discover the comprehensive admin panel features for managing users, viewing audit logs, and controlling system access.

  • User management with filtering
  • Audit and email logs
  • Session control and impersonation
  • Security event tracking
Docker Demo

Production-Ready Deployment

See how easy it is to deploy the entire stack with our Docker Compose setup, including nginx, PostgreSQL, and Redis.

  • One-command deployment
  • SSL termination with nginx
  • Database and cache included
  • Environment configuration
# Start the full stack
cd fullstack-starter
./start.sh docker

# Access the application
# Frontend: https://localhost
# API: https://localhost/api
# Admin Panel: https://localhost/admin
Mobile App Demo

Full-Stack Mobile Application

Experience our powerful mobile app with native-like performance and full feature parity.

  • Cross-Platform Ready

    Built with React Native for iOS and Android with single codebase.

  • Real-Time Synchronization

    Instant data sync with backend via WebSocket connections.

  • Offline-First Design

    Works seamlessly offline with local storage and background sync.

  • Biometric Authentication

    Face ID and fingerprint support for secure, fast access.

Comprehensive Documentation

Everything you need to get started and scale.

Getting Started

Step-by-step guide to set up your development environment.

API Reference

Complete API documentation with examples.

Security Guide

Best practices for securing your application.