Rails API for user-authenticated hormone studies and submissions.
- Docker Desktop (or Docker Engine + Compose v2)
docker compose up --buildAPI will be available at http://localhost:3000.
docker compose downdocker compose down -vcurl -X POST http://localhost:3000/signup \
-H "Content-Type: application/json" \
-d '{"user":{"email":"user@example.com","password":"password123","password_confirmation":"password123"}}'curl -X POST http://localhost:3000/login \
-H "Content-Type: application/json" \
-d '{"email":"user@example.com","password":"password123"}'curl http://localhost:3000/profile \
-H "Authorization: Bearer <token>"