├── .gitignore ├── LICENSE ├── README.md ├── app.tmpl.go ├── frontend ├── dist │ └── index.html ├── index.html ├── package.tmpl.json ├── src │ ├── App.vue │ ├── assets │ │ ├── fonts │ │ │ ├── OFL.txt │ │ │ └── nunito-v16-latin-regular.woff2 │ │ └── images │ │ │ ├── logo-universal.png │ │ │ └── naive-logo.svg │ ├── components │ │ └── HelloWorld.vue │ ├── main.js │ └── style.css └── vite.config.js ├── go.sum ├── go.tmpl.mod ├── main.tmpl.go ├── scripts ├── build-macos-arm.sh ├── build-macos-intel.sh ├── build-macos.sh ├── build-windows.sh ├── build.sh └── install-wails-cli.sh ├── template.json ├── wails-naive.png └── wails.tmpl.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/README.md -------------------------------------------------------------------------------- /app.tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/app.tmpl.go -------------------------------------------------------------------------------- /frontend/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/dist/index.html -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package.tmpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/package.tmpl.json -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/assets/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/src/assets/fonts/OFL.txt -------------------------------------------------------------------------------- /frontend/src/assets/fonts/nunito-v16-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/src/assets/fonts/nunito-v16-latin-regular.woff2 -------------------------------------------------------------------------------- /frontend/src/assets/images/logo-universal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/src/assets/images/logo-universal.png -------------------------------------------------------------------------------- /frontend/src/assets/images/naive-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/src/assets/images/naive-logo.svg -------------------------------------------------------------------------------- /frontend/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/src/main.js -------------------------------------------------------------------------------- /frontend/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/src/style.css -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/frontend/vite.config.js -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/go.sum -------------------------------------------------------------------------------- /go.tmpl.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/go.tmpl.mod -------------------------------------------------------------------------------- /main.tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/main.tmpl.go -------------------------------------------------------------------------------- /scripts/build-macos-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/scripts/build-macos-arm.sh -------------------------------------------------------------------------------- /scripts/build-macos-intel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/scripts/build-macos-intel.sh -------------------------------------------------------------------------------- /scripts/build-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/scripts/build-macos.sh -------------------------------------------------------------------------------- /scripts/build-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/scripts/build-windows.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/install-wails-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/scripts/install-wails-cli.sh -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/template.json -------------------------------------------------------------------------------- /wails-naive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/wails-naive.png -------------------------------------------------------------------------------- /wails.tmpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tk103331/wails-template-naive/HEAD/wails.tmpl.json --------------------------------------------------------------------------------