Convert frontend to Vue #3

Merged
jacob1123 merged 158 commits from vue into master 2022-02-08 22:20:11 +01:00
3 changed files with 6 additions and 3 deletions
Showing only changes of commit 93b1712fb5 - Show all commits

1
.gitignore vendored
View File

@ -4,6 +4,7 @@
# Unignore all with extensions # Unignore all with extensions
!*.* !*.*
!Dockerfile
# Unignore all dirs # Unignore all dirs
!*/ !*/

View File

@ -1,3 +0,0 @@
FROM golang:1.17
RUN go install github.com/kyleconroy/sqlc/cmd/sqlc@latest
RUN go install github.com/go-task/task/v3/cmd/task@latest

5
docker/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM alpine
RUN apk add go
RUN go install github.com/kyleconroy/sqlc/cmd/sqlc@latest
RUN go install github.com/go-task/task/v3/cmd/task@latest
RUN apk add nodejs yarn bash