From 64264c63780982909080438ade0d181da18d2dd2 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Tue, 1 Jun 2021 21:40:35 +1000 Subject: [PATCH] [v2] Add README to vanilla template --- .../templates/templates/vanilla/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 v2/cmd/wails/internal/commands/initialise/templates/templates/vanilla/README.md diff --git a/v2/cmd/wails/internal/commands/initialise/templates/templates/vanilla/README.md b/v2/cmd/wails/internal/commands/initialise/templates/templates/vanilla/README.md new file mode 100644 index 000000000..4c835c83a --- /dev/null +++ b/v2/cmd/wails/internal/commands/initialise/templates/templates/vanilla/README.md @@ -0,0 +1,16 @@ +# README + +## About + +This template uses vanilla JS / HTML and CSS. [Rollup](https://rollupjs.org/guide/en/) is used for processing and bundling the files. + +## Building + +To build this project in debug mode, use `wails build`. For production, use `wails build -production`. +To generate a platform native package, add the `-package` flag. + +## Live Development + +To run in live development mode, run `wails dev` in the project directory. In another terminal, go into the `frontend` +directory and run `npm run dev`. The frontend dev server will run on http://localhost:5000. Connect to this +in your browser and connect to your application.