Skip to content

Commit b9c0ae9

Browse files
committed
New features: MySQL support
Technical: Build with Go 1.12.1, show server name on About page
1 parent 38e609c commit b9c0ae9

20 files changed

+163
-135
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ Here's a couple of areas that could use some love:
4848

4949
# Standing on the shoulders of giants
5050

51-
[Go](https://golang.org/), [Gin web framework](https://github.com/gin-gonic), [Vue](https://vuejs.org/), [Vuetify](https://vuetifyjs.com/en/), [PostgreSQL](https://www.postgresql.org/)
51+
[Go](https://golang.org/), [Gin web framework](https://github.com/gin-gonic), [Vue](https://vuejs.org/), [Vuetify](https://vuetifyjs.com/en/), [PostgreSQL](https://www.postgresql.org/) and [MySQL](https://www.mysql.com/)
5252

5353
## Go Backend
5454

5555
- [Gin web framework](https://github.com/gin-gonic)
56-
- [Gorm](https://github.com/jinzhu/gorm) (with [PostgreSQL](https://www.postgresql.org/) persistence)
56+
- [Gorm](https://github.com/jinzhu/gorm) (with [PostgreSQL](https://www.postgresql.org/) or [MySQL](https://www.mysql.com/) persistence)
5757
- [Logrus](https://github.com/sirupsen/logrus), [Cobra](https://github.com/spf13/cobra), [Viper](https://github.com/spf13/viper), [Now](https://github.com/jinzhu/now), [lumberjackrus](https://github.com/orandin/lumberjackrus), [Cron](https://github.com/robfig/cron)
5858

5959
## JS Frontend

build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ REM Copyright © 2018-2019 Stanislav Valasek <[email protected]>
22

33
@ECHO OFF
44
set zip="C:\Program Files\7-Zip\7z.exe"
5-
set version="1.2.0"
5+
set version="1.2.1"
66
REM rem git describe --tags
77

88
if "%1" == "demo" (

client/.env

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
VUE_APP_URL=
2+
VUE_APP_PORT=

client/.env.development

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
VUE_APP_URL=http://localhost
2+
VUE_APP_PORT=3000

0 commit comments

Comments
 (0)