Files
agologum/scripts/DEV_README.md
Blitblank 4fe23699c8
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 7s
Build and Deploy API / build-and-deploy (push) Successful in 9s
fix client to api dtos again
2026-03-21 17:41:11 -05:00

652 B

These are some notes for development

contains some helpful tips, commands, and knowledge

Resetting the database (for dev):

set development evironment (specify non-docker network and db password) dotnet ef database drop dotnet ef migrations remove if above errors, dotnet ef database update 0 dotnet ef migrations add InitialCreate

To see live logs: sudo docker logs -f -t agologum-api

public user:

username=bard password=Public*890

chrome dev tools troubleshooting

response body: Network => url endpoint => Response => expand

Always test build before committing

for the client: $ npm run dev for the api: $ dotnet build