Skip to content

Commit 34b0e5c

Browse files
hexylenansoranzo
authored andcommitted
Change the default listen host (#1540)
* default wide open * add another var for @nsoranzo * blah
1 parent f379f10 commit 34b0e5c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# Settings
22
JEKYLL=jekyll
33
PORT?=4000
4-
HOST?=localhost
4+
HOST?=0.0.0.0
55
FLAGS?=""
66
CHROME=google-chrome-stable
77
TUTORIALS=$(shell find _site/training-material -name 'tutorial.html' | sed 's/_site\/training-material\///')
88
SLIDES=$(shell find _site/training-material -name 'slides.html' | sed 's/_site\/training-material\///')
99
SLIDES+=$(shell find _site/training-material/*/*/slides/* | sed 's/_site\/training-material\///')
10-
SITE_URL=http://${HOST}:${PORT}/training-material
10+
PDF_HOST?=127.0.0.1
11+
SITE_URL=http://${PDF_HOST}:${PORT}/training-material
1112
PDF_DIR=_pdf
1213
REPO=$(shell echo "$${ORIGIN_REPO:-galaxyproject/training-material}")
1314
BRANCH=$(shell echo "$${ORIGIN_BRANCH:-master}")

0 commit comments

Comments
 (0)