We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a445eda commit 17ef42dCopy full SHA for 17ef42d
README.md
@@ -32,7 +32,26 @@ After
32
docker pull ghcr.io/rajeshm20/studentappbackend:latest
33
```
34
pulling the docker image and successfully running that includes StudentAppBackend app and mysql, try below endpoints using curl
35
+with http
36
37
+SignUp
38
+```
39
+curl -k -X POST https://localhost:8080/auth/signup \
40
+ -H "Content-Type: application/json" \
41
+ -d '{"name":"SasvathRN", "email": "sasvathrn@rnss.com", "password":"password123"}'
42
43
+
44
+Login
45
46
+curl -k -X POST https://localhost:8080/auth/login \
47
48
+ -d '{
49
+ "email": "rajesh@example.com",
50
+ "password": "password123"
51
+ }'
52
53
54
+with https
55
Signup
56
```bash
57
curl https://localhost:8080/auth/signup \
0 commit comments