Skip to content

Commit

Permalink
refactor: Fix path for creating initial user in dev script (#69)
Browse files Browse the repository at this point in the history
Just a small fix in the `develop.sh` script to pick up the new create initial user route
  • Loading branch information
bryphe-coder committed Jan 25, 2022
1 parent 5b01f61 commit ec144d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion develop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit ec144d9

Please sign in to comment.