Add DTO, exceptions, Flyway config, JPA file and test that allows user registration.

This commit is contained in:
2026-05-31 17:10:49 -06:00
parent 578fe6fa19
commit d432f1d1a3
16 changed files with 580 additions and 0 deletions

5
scripts/register Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
curl -s -X POST http://localhost:8080/auth/register \
-H "Content-Type: application/json" \
-d '{"username": "starkey", "password": "password"}'