- FastAPI backend mit Domain-Check, TLD-Pricing, User-Management - Next.js frontend mit modernem UI - Sortierbare TLD-Tabelle mit Mini-Charts - Domain availability monitoring - Subscription tiers (Starter, Professional, Enterprise) - Authentication & Authorization - Scheduler für automatische Domain-Checks
36 lines
555 B
Plaintext
36 lines
555 B
Plaintext
# FastAPI & Server
|
|
fastapi>=0.115.0
|
|
uvicorn[standard]>=0.32.0
|
|
python-multipart>=0.0.12
|
|
|
|
# Database
|
|
sqlalchemy>=2.0.35
|
|
alembic>=1.14.0
|
|
aiosqlite>=0.20.0
|
|
|
|
# Authentication
|
|
python-jose[cryptography]>=3.3.0
|
|
passlib[bcrypt]>=1.7.4
|
|
bcrypt>=4.0.0,<4.1
|
|
|
|
# Domain Checking
|
|
python-whois>=0.9.4
|
|
dnspython>=2.7.0
|
|
whodap>=0.1.12
|
|
|
|
# Scheduling
|
|
apscheduler>=3.10.4
|
|
|
|
# Email (optional, for notifications)
|
|
aiosmtplib>=3.0.2
|
|
|
|
# Utilities
|
|
python-dotenv>=1.0.1
|
|
pydantic[email]>=2.10.0
|
|
pydantic-settings>=2.6.0
|
|
httpx>=0.28.0
|
|
|
|
# Production Database (optional)
|
|
asyncpg>=0.30.0
|
|
|