-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
81 changed files
with
2,881 additions
and
4,971 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
SERVICE_NAME=api | ||
PORT=8100 | ||
BASE_URL=http://localhost:8100 | ||
# DB config | ||
ACCESS_TOKEN_TTL=30 | ||
DB_HOST="127.0.0.1" | ||
DB_PORT="54321" | ||
DB_USER="postgres" | ||
DB_PASS="postgres" | ||
DB_NAME="db_local" | ||
|
||
ALLOWED_ORIGINS="https://*.dwarves.foundation/;https://*.vercel.app" | ||
ENV=dev | ||
JWT_SECRET=sample_secret | ||
|
||
SENTRY_DSN='' | ||
VERSION=1.0.0 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
**What does this PR do?** | ||
|
||
- [x] My bugfix | ||
|
||
**How to test** | ||
|
||
- Create a detailed description of what you need to do to set this PR up. ie: Does it need migrations? Do you need to install something? | ||
- Create a step by step list of what the engineer needs to do to test. | ||
|
||
**Edge cases** | ||
|
||
- What are the edge cases that you might see in this PR? | ||
|
||
**Media (Loom or gif)** | ||
|
||
- Insert media here (if applicable) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
on: [pull_request] | ||
|
||
jobs: | ||
ci-test: | ||
runs-on: ubuntu-latest | ||
name: CI testing | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: "^1.18.3" | ||
|
||
- name: Init Test DB | ||
run: make setup && make init && make migrate-up | ||
env: | ||
GOPATH: "/home/runner/go" | ||
|
||
- name: Run Test Cases | ||
run: make test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Lint Commit Messages | ||
on: [pull_request] | ||
|
||
jobs: | ||
commitlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: wagoid/commitlint-github-action@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: golangci-lint | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
branches: | ||
- master | ||
- main | ||
pull_request: | ||
permissions: | ||
contents: read | ||
# Optional: allow read access to pull request. Use with `only-new-issues` option. | ||
# pull-requests: read | ||
jobs: | ||
golangci: | ||
name: lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.18 | ||
- uses: actions/checkout@v3 | ||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version | ||
version: latest | ||
|
||
# Optional: working directory, useful for monorepos | ||
# working-directory: somedir | ||
|
||
# Optional: golangci-lint command line arguments. | ||
args: --issues-exit-code=0 | ||
|
||
# Optional: show only new issues if it's a pull request. The default value is `false`. | ||
only-new-issues: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
vendor/ | ||
|
||
# Go workspace file | ||
go.work | ||
.DS_Store | ||
node_modules | ||
*.log | ||
.env | ||
.vscode | ||
|
||
mock_* | ||
mocks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM golang:1.17 | ||
RUN mkdir /build | ||
WORKDIR /build | ||
COPY . . | ||
|
||
ENV GOOS=linux GOARCH=amd64 CGO_ENABLED=0 | ||
RUN go install -v ./... | ||
RUN go install -v github.com/rubenv/sql-migrate/sql-migrate@latest | ||
|
||
FROM alpine:3.15.0 | ||
ARG DEFAULT_PORT | ||
RUN apk --no-cache add ca-certificates | ||
WORKDIR / | ||
|
||
COPY --from=0 /go/bin/* /usr/bin/ | ||
COPY template /srv/neko/template | ||
COPY migrations /migrations | ||
COPY dbconfig.yml / | ||
## config for timezone | ||
COPY --from=0 /usr/share/zoneinfo /usr/share/zoneinfo | ||
EXPOSE ${DEFAULT_PORT} | ||
|
||
CMD [ "server" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
APP_NAME=api | ||
DEFAULT_PORT=8100 | ||
.PHONY: setup init build dev test db-migrate-up db-migrate-down | ||
|
||
setup: | ||
go install github.com/rubenv/sql-migrate/...@latest | ||
go install github.com/golang/mock/[email protected] | ||
go install github.com/vektra/mockery/v2@latest | ||
cp .env.sample .env | ||
make mock | ||
make init | ||
|
||
init: | ||
make remove-infras | ||
docker-compose up -d | ||
@echo "Waiting for database connection..." | ||
@while ! docker exec db_local pg_isready -h localhost -p 5432 > /dev/null; do \ | ||
sleep 1; \ | ||
done | ||
make migrate-up | ||
make seed-db | ||
|
||
remove-infras: | ||
docker-compose stop; docker-compose rm -f | ||
|
||
build: | ||
env GOOS=darwin GOARCH=amd64 go build -o bin ./... | ||
|
||
dev: | ||
go run ./cmd/server/main.go | ||
|
||
test: | ||
make mock | ||
@PROJECT_PATH=$(shell pwd) go test -cover ./... | ||
|
||
|
||
migrate-new: | ||
sql-migrate new -env=local ${name} | ||
|
||
migrate-up: | ||
sql-migrate up -env=local | ||
|
||
migrate-down: | ||
sql-migrate down -env=local | ||
|
||
docker-build: | ||
docker build \ | ||
--build-arg DEFAULT_PORT="${DEFAULT_PORT}" \ | ||
-t ${APP_NAME}:latest . | ||
|
||
seed-db: | ||
@docker cp data/seed/seed.sql db_local:/seed.sql | ||
@docker exec -t db_local sh -c "PGPASSWORD=postgres psql -U postgres -d db_local -f /seed.sql" | ||
|
||
reset-db: | ||
make init | ||
make migrate-up | ||
make seed-db | ||
|
||
mock: | ||
mockery --dir pkg/entities --all --recursive --inpackage | ||
mockery --dir pkg/repo --all --recursive --inpackage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,9 @@ | ||
# template-go | ||
|
||
> Template for scaffolding your next Go http server project, based on [gokit](https://github.com/go-kit/kit). | ||
> Template for scaffolding your next Go http server project | ||
## Usage | ||
|
||
Install [SAO](https://github.com/egoist/sao) first. | ||
|
||
```bash | ||
yarn global add sao | ||
# or | ||
npm i -g sao | ||
``` | ||
|
||
### From git | ||
|
||
```bash | ||
sao dwarvesf/template-go my-project | ||
``` | ||
|
||
## License | ||
|
||
MIT © [dwarvesf](github.com/dwarvesf) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.