mirror of
https://github.com/wahyd4/passkey-auth.git
synced 2026-08-09 04:15:55 +10:00
- Complete WebAuthn/FIDO2 authentication implementation - SQLite database with user and credential management - Email-based user identification with allowlist support - Admin approval workflow for new users - Session management with secure cookies - Docker containerization with Debian base for SQLite compatibility - Kubernetes deployment manifests with nginx ingress support - Web-based admin interface for user management - Comprehensive documentation and deployment guides - Standard open source project structure with CI/CD
17 lines
395 B
Bash
Executable File
17 lines
395 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "🚀 Building Passkey Auth..."
|
|
|
|
# Build Docker image
|
|
echo "Building Docker image..."
|
|
docker build -t passkey-auth:latest .
|
|
|
|
echo "✅ Build complete!"
|
|
echo ""
|
|
echo "Next steps:"
|
|
echo "1. Update k8s/deployment.yaml with your domain and session secret"
|
|
echo "2. Run ./scripts/deploy.sh to deploy to Kubernetes"
|
|
echo "3. Configure your nginx ingress to use passkey auth"
|