Skip to content

Commit c0be24e

Browse files
authored
Vite-based Vue temaplates (#117)
1 parent 7aeb9df commit c0be24e

22 files changed

+177
-226
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build
2-
on: [push, pull_request]
2+
on: [push]
33
jobs:
44

55
test:
@@ -9,7 +9,7 @@ jobs:
99
- name: Set up Go 1.19
1010
uses: actions/setup-go@v1
1111
with:
12-
go-version: 1.19
12+
go-version: 1.20
1313
id: go
1414
- name: Check out
1515
uses: actions/checkout@v2
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
go: [ 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17, 1.18 ]
33+
go: [ 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19 ]
3434
steps:
3535
- name: Set up Go ${{ matrix.go }}
3636
uses: actions/setup-go@v1

.github/workflows/verify-templates.yml

+24-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: verify-templates
22
on:
33
push:
4-
pull_request:
54
schedule:
65
- cron: '0 14 * * *'
76
jobs:
@@ -18,7 +17,7 @@ jobs:
1817
- name: Set up Go
1918
uses: actions/setup-go@v1
2019
with:
21-
go-version: 1.18
20+
go-version: 1.20
2221
- name: Checkout project
2322
uses: actions/checkout@v2
2423
- name: Generate application
@@ -29,8 +28,28 @@ jobs:
2928
run: timeout 60 bash -c 'until curl -s localhost:8080/api/technologies | grep Go > /dev/null; do sleep 1; done'
3029
- name: Check availability of frontend
3130
run: |
32-
npm i domcurl
33-
timeout 60 bash -c 'until ./node_modules/domcurl/index.js http://localhost:8080 | grep Go > /dev/null; do sleep 1; done'
31+
npm i puppeteer
32+
cat > index.js << EOF
33+
const puppeteer = require('puppeteer');
34+
(async () => {
35+
try {
36+
const browser = await puppeteer.launch({headless: "new"});
37+
const page = await browser.newPage();
38+
await page.goto('http://localhost:8080');
39+
page.on('console', (message) => {
40+
console.log('Console ' + message.type().toUpperCase() + ': ' + message.text());
41+
});
42+
await page.waitForSelector('.technologies', { timeout: 60000 });
43+
const content = await page.content();
44+
console.log(content);
45+
await browser.close();
46+
} catch (error) {
47+
console.error('Error:', error);
48+
throw error;
49+
}
50+
})();
51+
EOF
52+
node index.js
3453
- name: Stop application
3554
run: cd app && docker-compose down
36-
if: always()
55+
if: always()

static/generated.go

+78-111
Large diffs are not rendered by default.

templates/angular.webapp/src/app/tech/tech.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<ul>
1+
<ul class="technologies">
22
<li *ngFor="let tech of technologies">
33
<b>{{tech.name}}</b>: {{tech.details}}
44
</li>

templates/mongo.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM node:16.18.1-alpine3.16 AS JS_BUILD
22
COPY webapp /webapp
3-
WORKDIR webapp
3+
WORKDIR /webapp
44
RUN npm install && npm run build
55

66
FROM golang:1.19.0-alpine3.16 AS GO_BUILD

templates/mysql.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM node:16.18.1-alpine3.16 AS JS_BUILD
22
COPY webapp /webapp
3-
WORKDIR webapp
3+
WORKDIR /webapp
44
RUN npm install && npm run build
55

66
FROM golang:1.19.0-alpine3.16 AS GO_BUILD

templates/postgres.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM node:16.18.1-alpine3.16 AS JS_BUILD
22
COPY webapp /webapp
3-
WORKDIR webapp
3+
WORKDIR /webapp
44
RUN npm install && npm run build
55

66
FROM golang:1.19.0-alpine3.16 AS GO_BUILD

templates/vue.webapp/.env.development

-2
This file was deleted.

templates/vue.webapp/.env.local

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
NODE_ENV=local
2+
VITE_API_URL=http://localhost:8080

templates/vue.webapp/.env.production

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
NODE_ENV=production
2-
VUE_APP_API_URL=
1+
VITE_API_URL=

templates/vue.webapp/.eslintrc.cjs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/* eslint-env node */
2+
module.exports = {
3+
root: true,
4+
'extends': [
5+
'plugin:vue/vue3-essential',
6+
'eslint:recommended'
7+
],
8+
parserOptions: {
9+
ecmaVersion: 'latest'
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
3+
}

templates/vue.webapp/babel.config.js

-5
This file was deleted.

templates/vue.webapp/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<link rel="icon" href="/favicon.ico">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>project-name</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/main.js"></script>
12+
</body>
13+
</html>

templates/vue.webapp/jsconfig.json

-19
This file was deleted.

templates/vue.webapp/package.json

+12-35
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,19 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"start": "vue-cli-service serve --port 3000",
7-
"build": "vue-cli-service build --dest build",
8-
"lint": "vue-cli-service lint"
6+
"start": "vite --port 3000",
7+
"build": "vite build",
8+
"preview": "vite preview",
9+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
910
},
1011
"dependencies": {
11-
"axios": "~0.27.2",
12-
"core-js": "^3.8.3",
13-
"vue": "^3.2.13"
12+
"axios": "^1.4.0",
13+
"vue": "^3.3.2"
1414
},
1515
"devDependencies": {
16-
"@babel/core": "^7.12.16",
17-
"@babel/eslint-parser": "^7.12.16",
18-
"@vue/cli-plugin-babel": "~5.0.0",
19-
"@vue/cli-plugin-eslint": "~5.0.0",
20-
"@vue/cli-service": "~5.0.0",
21-
"eslint": "^7.32.0",
22-
"eslint-plugin-vue": "^8.0.3"
23-
},
24-
"eslintConfig": {
25-
"root": true,
26-
"env": {
27-
"node": true
28-
},
29-
"extends": [
30-
"plugin:vue/vue3-essential",
31-
"eslint:recommended"
32-
],
33-
"parserOptions": {
34-
"parser": "@babel/eslint-parser"
35-
},
36-
"rules": {}
37-
},
38-
"browserslist": [
39-
"> 1%",
40-
"last 2 versions",
41-
"not dead",
42-
"not ie 11"
43-
]
44-
}
16+
"@vitejs/plugin-vue": "^4.2.3",
17+
"eslint": "^8.39.0",
18+
"eslint-plugin-vue": "^9.11.0",
19+
"vite": "^4.3.5"
20+
}
21+
}

templates/vue.webapp/public/index.html

-16
This file was deleted.

templates/vue.webapp/src/App.vue

+7-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
<script setup>
2+
import TechItems from './components/TechItems.vue'
3+
import logoSVG from '@/assets/logo.svg';
4+
</script>
5+
16
<template>
2-
<div id="app">
7+
<main id="app">
38
<h2 class="title">project-name</h2>
49
<div class="logo">
510
<img :src="logoSVG" height="150" alt="logo" />
@@ -16,25 +21,9 @@
1621
and <code>server/web/app.go</code>.
1722
<TechItems />
1823
</div>
19-
</div>
24+
</main>
2025
</template>
2126

22-
<script>
23-
import TechItems from './components/TechItems.vue'
24-
25-
export default {
26-
name: 'App',
27-
components: {
28-
TechItems
29-
},
30-
data() {
31-
return {
32-
logoSVG: require('./assets/logo.svg')
33-
}
34-
}
35-
};
36-
</script>
37-
3827
<style>
3928
body {
4029
margin-top: 5%;

templates/vue.webapp/src/components/TechItems.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default {
1818
},
1919
mounted() {
2020
axios
21-
.get(`${process.env.VUE_APP_API_URL}/api/technologies`)
21+
.get(`${import.meta.env.VITE_API_URL}/api/technologies`)
2222
.then(response => (this.technologies = response.data));
2323
}
2424
};

templates/vue.webapp/vite.config.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { fileURLToPath, URL } from 'node:url'
2+
3+
import { defineConfig } from 'vite'
4+
import vue from '@vitejs/plugin-vue'
5+
6+
// https://vitejs.dev/config/
7+
export default defineConfig({
8+
plugins: [vue()],
9+
resolve: {
10+
alias: {
11+
'@': fileURLToPath(new URL('./src', import.meta.url))
12+
}
13+
},
14+
build: {
15+
outDir: 'build',
16+
},
17+
})

templates/vue.webapp/vue.config.js

-4
This file was deleted.

transform/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module transform
22

3-
go 1.19
3+
go 1.20

0 commit comments

Comments
 (0)