git-subtree-dir: users/wpcarro git-subtree-mainline:464bbcb15cgit-subtree-split:24f5a642afChange-Id: I6105b3762b79126b3488359c95978cadb3efa789
		
			
				
	
	
		
			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
 |