feat/add meta query (#38)

* feat: add meta query

* fix: readme
This commit is contained in:
Lakhan Samani
2021-07-28 13:25:52 +05:30
committed by GitHub
parent f9d2bb8799
commit e11476364c
13 changed files with 564 additions and 24 deletions

View File

@@ -1,6 +1,10 @@
FROM golang:1.16-alpine as builder
WORKDIR /app
COPY . .
ARG VERSION=0.1.0-beta.0
ENV VERSION="${VERSION}"
RUN apk add build-base &&\
cd server && \
go mod download && \