You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd [service_name] # start with auth
alembic revision --autogenerate -m 'MESSAGE'# for a new project
alembic upgrade head
alembic current # to check things went smoothly
Seed Data
cd auth-service
python -m app.scripts.seed_permissions
python -m app.scripts.seed_admin # --reset (to reset the admin)
Microservice-based HR platform built with FastAPI, starting with an Auth service (JWT, RBAC, permissions) and expanding into core HR modules like Employees, Payroll, Time Tracking, and Documents & Compliance.