mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
Add meteor ens3 Ethernet interface to rebuild-wekan.sh
Thanks to xet7 !
This commit is contained in:
parent
032099cfbe
commit
311c0d23a4
1 changed files with 7 additions and 1 deletions
|
@ -64,7 +64,7 @@ function npm_call(){
|
||||||
|
|
||||||
echo
|
echo
|
||||||
PS3='Please enter your choice: '
|
PS3='Please enter your choice: '
|
||||||
options=("Install Wekan dependencies" "Build Wekan" "Run Meteor for development on Ethernet IP address port 4000" "Run Meteor for development on Custom IP address and port" "Quit")
|
options=("Install Wekan dependencies" "Build Wekan" "Run Meteor for development on Ethernet IP address port 4000" "Run Meteor for development on Eth interface ens3 address port 4000" "Run Meteor for development on Custom IP address and port" "Quit")
|
||||||
select opt in "${options[@]}"
|
select opt in "${options[@]}"
|
||||||
do
|
do
|
||||||
case $opt in
|
case $opt in
|
||||||
|
@ -172,6 +172,12 @@ do
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"Run Meteor for development on Eth interface ens3 address port 4000")
|
||||||
|
IPADDRESS=$(ip addr show ens3 | grep 'inet ' | cut -d: -f2 | awk '{ print $2}' | cut -d '/' -f 1)
|
||||||
|
WITH_API=true RICHER_CARD_COMMENT_EDITOR=false ROOT_URL=http://$IPADDRESS:4000 meteor run --exclude-archs web.browser.legacy,web.cordova --port 4000
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
|
||||||
"Run Meteor for development on Custom IP address and port")
|
"Run Meteor for development on Custom IP address and port")
|
||||||
ip address
|
ip address
|
||||||
echo "From above list, what is your IP address?"
|
echo "From above list, what is your IP address?"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue