From d9d4e493d9bc752ef24858e7a9136d371ab9b7ad Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Mon, 6 Aug 2018 10:00:59 -0400 Subject: [PATCH] Compile assets before starting server --- script/server | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/server b/script/server index 47e7cbaa..c03cfdd5 100755 --- a/script/server +++ b/script/server @@ -4,5 +4,8 @@ source "$(dirname "${0}")"/../script/include/global_header.inc.sh +# Compile js/css assets +yarn build + # Launch the app run_command "./app.py ${LAUNCH_ARGS}"