- Added endpoints for sending and confirming email verification, enhancing user account security. - Integrated two-factor authentication (2FA) with TOTP support, including enabling, verifying, and disabling 2FA. - Implemented social login functionality for Google and Facebook, allowing users to authenticate using their existing accounts. - Updated dependency injection to include services for email, 2FA, and social login. - Enhanced documentation to reflect new features and usage examples for email verification and 2FA.
Local Development Deployment
Docker Compose configuration for running the GoodGo platform locally.
Quick Start
# Setup environment
cp env.local.example .env.local
# Start platform
docker-compose up -d
# View status
docker-compose ps
Access
- Traefik Dashboard: http://localhost:8080
- Auth Service: http://localhost/api/v1/auth
- Web Admin: http://admin.localhost (currently disabled)
- Web Client: http://localhost (currently disabled)
Documentation
For detailed documentation, see:
- English: docs/en/guides/local-deployment.md
- Vietnamese: docs/vi/guides/local-deployment.md
Files
docker-compose.yml- Service orchestrationenv.local.example- Environment variables template.env.local- Your local environment (git-ignored)
Common Commands
docker-compose up -d # Start all
docker-compose logs -f [service] # View logs
docker-compose down # Stop all
docker-compose ps # Check status
For troubleshooting and advanced usage, see the full documentation above.