Skip to content

Commit 7aef033

Browse files
committed
Update read me
1 parent 8719ffc commit 7aef033

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

‎README.md‎

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Manage API calls on github to pull Adobe informations
55

66
# Start
77

8-
After installing dependencies with `npm install` and grunt with `npm install grunt --save-dev`, you can lunch the server with:
8+
After installing dependencies with `npm install`, you can lunch the server with:
99

1010
```
11-
grunt serve
11+
node server.js
1212
```
1313

1414
# Use
@@ -27,4 +27,11 @@ The ID and pass are pulled from the local environement variables. Add those line
2727
```
2828
export GHUSER=[userName]
2929
export GHPASS=[userPassword]
30+
```
31+
32+
The default port is 8000. To be able to bind the input port 80 to 8000:
33+
34+
```
35+
sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080
36+
sudo iptables-save
3037
```

0 commit comments

Comments
(0)