From ec144d9f56149d0676eb8817537f0b334bffc778 Mon Sep 17 00:00:00 2001 From: Bryan Date: Tue, 25 Jan 2022 13:22:56 -0800 Subject: [PATCH] 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 --- develop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/develop.sh b/develop.sh index 689b92ebbc..1a9239e395 100755 --- a/develop.sh +++ b/develop.sh @@ -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.