a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
21 lines
408 B
Bash
Executable file
21 lines
408 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# This script populates the Accounts table over HTTP.
|
|
|
|
http POST :3000/accounts \
|
|
username=mimi \
|
|
password=testing \
|
|
email=miriamwright@google.com \
|
|
role=user
|
|
|
|
http POST :3000/accounts \
|
|
username=bill \
|
|
password=testing \
|
|
email=wpcarro@gmail.com \
|
|
role=manager
|
|
|
|
http POST :3000/accounts \
|
|
username=wpcarro \
|
|
password=testing \
|
|
email=wpcarro@google.com \
|
|
role=admin
|