refactor: Fix path for creating initial user in dev script (#69)

Just a small fix in the `develop.sh` script to pick up the new create initial user route
This commit is contained in:
Bryan
2022-01-25 13:22:56 -08:00
committed by GitHub
parent 5b01f615eb
commit ec144d9f56

View File

@ -18,7 +18,7 @@ function create_initial_user() {
curl -X POST \
-d "{\"email\": \"$EMAIL\", \"username\": \"$USERNAME\", \"organization\": \"$ORGANIZATION\", \"password\": \"$PASSWORD\"}" \
-H 'Content-Type:application/json' \
http://localhost:3000/api/v2/users
http://localhost:3000/api/v2/user
}
# Do initial build - a dev build for coderd.