Skip to content

Commit ec60ca4

Browse files
authored
Merge pull request #15 from fractalliter/change-port
change server port
2 parents 67c4b0e + e064cf4 commit ec60ca4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ not always in order.
6767

6868
```bash
6969
curl --request POST -sLv \
70-
--url 'http://localhost:3000/hierarchy' \
70+
--url 'http://localhost:8080/hierarchy' \
7171
--header "Content-Type: application/json" \
7272
--header "Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJodHRwOi8vMC4wLjAuMDo4MDgwL2hpZXJhcmNoeSIsImlzcyI6Imh0dHA6Ly8wLjAuMC4wOjgwODAvIiwiZXhwIjoxNjUwNDkwNzUwLCJ1c2VybmFtZSI6ImphbmUifQ.Xfn4JEOHo-Px7vy0TVyo3malCFlj3eFvzAJejqlefPM" \
7373
--data '{"Nick":"Barbara","Barbara":"Nick","Elias":"Levi"}'
@@ -79,7 +79,7 @@ For instance, previous input would result in:
7979

8080
```bash
8181
curl --request GET -sLv \
82-
--url 'http://localhost:3000/hierarchy' \
82+
--url 'http://localhost:8080/hierarchy' \
8383
--header "Content-Type: application/json" \
8484
--header "Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJodHRwOi8vMC4wLjAuMDo4MDgwL2hpZXJhcmNoeSIsImlzcyI6Imh0dHA6Ly8wLjAuMC4wOjgwODAvIiwiZXhwIjoxNjUwNDkwNzUwLCJ1c2VybmFtZSI6ImphbmUifQ.Xfn4JEOHo-Px7vy0TVyo3malCFlj3eFvzAJejqlefPM"
8585
```
@@ -103,7 +103,7 @@ Query for a specific Person it's the hierarchy:
103103

104104
```bash
105105
curl --request GET -sLv \
106-
--url 'http://localhost:3000/hierarchy/Nick/supervisors'\
106+
--url 'http://localhost:8080/hierarchy/Nick/supervisors'\
107107
--header "Content-Type: application/json" \
108108
--header "Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJodHRwOi8vMC4wLjAuMDo4MDgwL2hpZXJhcmNoeSIsImlzcyI6Imh0dHA6Ly8wLjAuMC4wOjgwODAvIiwiZXhwIjoxNjUwNDkwNzUwLCJ1c2VybmFtZSI6ImphbmUifQ.Xfn4JEOHo-Px7vy0TVyo3malCFlj3eFvzAJejqlefPM"
109109
```
@@ -128,7 +128,7 @@ Sign up to the system
128128

129129
```bash
130130
curl --request POST -sL \
131-
--url 'http://localhost:3000/signup'\
131+
--url 'http://localhost:8080/signup'\
132132
--header "Content-Type: application/json" \
133133
--data '{"username":"jane","password":"doe"}'
134134
```
@@ -137,7 +137,7 @@ login to the system
137137

138138
```bash
139139
curl --request POST -sL \
140-
--url 'http://localhost:3000/login'\
140+
--url 'http://localhost:8080/login'\
141141
--header "Content-Type: application/json" \
142142
--data '{"username":"jane","password":"doe"}'
143143
```

0 commit comments

Comments
 (0)