diff --git a/Taskfile.yml b/Taskfile.yml new file mode 100644 index 0000000..c5f276e --- /dev/null +++ b/Taskfile.yml @@ -0,0 +1,17 @@ +# yaml-language-server: $schema=https://taskfile.dev/schema.json + +version: '3' + +vars: + GREETING: Hello, world! + +tasks: + default: + desc: Print a greeting message + cmds: + - echo "{{.GREETING}}" + silent: true + + start: + cmds: + - cd pwa && npm start diff --git a/pwa/index.html b/pwa/index.html index a502938..667d7a1 100644 --- a/pwa/index.html +++ b/pwa/index.html @@ -2,7 +2,10 @@
- +