-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yannic Hock
committed
Jan 11, 2023
1 parent
9298c14
commit 3070de8
Showing
7 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
start cmd.exe /c startEditor.bat | ||
start cmd.exe /c startReportService.bat | ||
start cmd.exe /c startTestActionService.bat | ||
start cmd.exe /c startTestActionService.bat | ||
|
||
echo Local IP: | ||
ipconfig | findstr "IPv4" | ||
echo Public IP: | ||
nslookup myip.opendns.com resolver1.opendns.com | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
./startEditor.sh & | ||
./startReportService.sh & | ||
./startTestActionService.sh & | ||
|
||
echo "Local IP: " | ||
ip addr show | grep "inet " | awk '{print $2}' | ||
echo "Public IP: " | ||
curl -s checkip.dyndns.org | sed -e 's/.*Current IP Address: //' -e 's/<.*$//' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
node npm\node_modules\ember-cli\bin\ember clean-tmp & node npm\node_modules\ember-cli\bin\ember serve | ||
node npm\node_modules\ember-cli\bin\ember clean-tmp & node npm\node_modules\ember-cli\bin\ember serve | ||
echo Local IP: | ||
ipconfig | findstr "IPv4" | ||
echo Public IP: | ||
nslookup myip.opendns.com resolver1.opendns.com | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
|
||
node npm/node_modules/ember-cli/bin/ember clean-tmp & node npm/node_modules/ember-cli/bin/ember serve | ||
|
||
echo "Local IP: " | ||
ip addr show | grep "inet " | awk '{print $2}' | ||
echo "Public IP: " | ||
curl -s checkip.dyndns.org | sed -e 's/.*Current IP Address: //' -e 's/<.*$//' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
node reportService.js | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/bash | ||
node testActionService.js |