aboutsummaryrefslogtreecommitdiff
path: root/api/tests.sh
blob: 391aa0ffc63606a778232f8b3ef425571fc5859f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

signup () {
	curl -X POST \
		-H "Content-Type: application/json" \
		-d '{
		"username": "test",
		"email": "test@example.com",
		"password": "password123"
		}' \
		localhost:5000/api/auth/signup
}