Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Arch Linux
Rebuilderd Website
Commits
d8946000
Verified
Commit
d8946000
authored
Jul 05, 2020
by
Jelle van der Waa
🚧
Browse files
Do not bind budo to *:9966 by default
parent
db44891f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
d8946000
...
...
@@ -8,6 +8,7 @@ YARN ?= yarn
# Variables
PORT
?=
9966
HOST
?=
localhost
VERSION
?=
$(
shell
git describe
--tags
--always
--dirty
--match
=
v
*
2>/dev/null |
sed
's/^v//'
||
\
cat
$(CURDIR)
/.version 2> /dev/null
||
echo
0.0.0-unreleased
)
...
...
@@ -22,7 +23,7 @@ sass-watcher: vendor
.PHONY
:
js-watcher
js-watcher
:
vendor
# TODO: yarn run doesn't work..
./node_modules/.bin/budo src/index.js:bundle.js
--dir
public
--port
$(PORT)
--live
--
-t
babelify
./node_modules/.bin/budo src/index.js:bundle.js
--dir
public
--host
$(HOST)
--port
$(PORT)
--live
--
-t
babelify
# Dist
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment