Rudy Sulley
04/30/2024, 7:46 PMmanage.py createsuperuser
for creating a user with elevated privileges.
For ktor, I have resorted to creating a user programmatically when the app starts, (first checking if the user already exist)
or going into the database and adding the user manually, but this doesn't scale when you constantly need to clear the db in development
Is there a more elegant or standard way of doing this?
I assume it would be a similar process in other frameworks, express, flask etc since they don't also have thatAdamW
04/30/2024, 9:52 PMRudy Sulley
04/30/2024, 9:53 PMRudy Sulley
04/30/2024, 9:54 PMAdamW
04/30/2024, 10:14 PMRudy Sulley
05/01/2024, 4:01 AM