experiments

All kinds of coding experiments
Log | Files | Refs | Submodules

commit 87a94de5ee9d6dfa99597aedba3b38538a8592f5
parent 98a4381b7234254ec0b0e1e9a11d928d7b3fcde3
Author: Vetle Haflan <vetle@haflan.dev>
Date:   Thu, 17 Sep 2020 19:49:29 +0200

Add dockerdev.sh to vue-cli helper for further simplification

THOUGH: The built-in Vue server does not work like I expected it to.
Seems like it doesn't actually build the files, but instead perform some
magic to update the app immediately.
Should probably use `npm build --mode development --watch` instead, when
building for external server.
(https://cli.vuejs.org/guide/cli-service.html#vue-cli-service-build)

Diffstat:
Avue-template/vue-cli/dockerdev.sh | 12++++++++++++
Mvue-template/vue-cli/generate.sh | 1+
2 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/vue-template/vue-cli/dockerdev.sh b/vue-template/vue-cli/dockerdev.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# If 'serve' arg is given, a port is actually exposed, otherwise the host +# is responsible for the server +if [ "$1" == "serve" ]; then + port=$2 + if [ -z "$port" ]; then + port=8080 + fi + port_arg="-p $port:8080" +fi +docker run -it $port_arg -u $UID -v $PWD:/vue -w /vue node:alpine npm run serve diff --git a/vue-template/vue-cli/generate.sh b/vue-template/vue-cli/generate.sh @@ -2,4 +2,5 @@ cd /vue npm install -g @vue/cli || exit 1 vue create $VUE_APP +cp dockerdev.sh $VUE_APP/ chown -R $DOCKER_USER: /vue