File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff 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```
2828export GHUSER=[userName]
2929export 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```
You can’t perform that action at this time.
0 commit comments