GithubHelp home page GithubHelp logo

go-boilerplate's Introduction

Go boilerplate

This boilerplate follow Clean Architecture, work best for monolith Go application with multiple domain modules.

Requirements

Golangci-lint:

Installation: https://golangci-lint.run/usage/install/#local-installation

Pre-commit hooks:

Installation: https://pre-commit.com/#installation

After install pre-commit, run the following commands:

# Run pre-commit install to install pre-commit into your git hooks. pre-commit will now run on every commit.
pre-commit install
pre-commit install --hook-type commit-msg

How to create a DB Migration

Prerequisite:

Install goose https://github.com/pressly/goose

go install github.com/pressly/goose/v3/cmd/[email protected]

Create new file to migrate:

goose -dir ./db/migrations create add_order_table sql
-- +goose Up
-- +goose StatementBegin
CREATE TABLE "public"."order"
(
    "id"     varchar NOT NULL,
    "amount" varchar NOT NULL,
    CONSTRAINT "order_pk" PRIMARY KEY ("id")
)
-- +goose StatementEnd

-- +goose Down
-- +goose StatementBegin
DROP TABLE IF EXISTS "public"."order";
-- +goose StatementEnd

Migrate: (Change dsn yourself)

goose -dir ./db/migrations postgres "postgresql://postgres:[email protected]:5435/db_name?sslmode=disable" up

TODO:

[ ] CLI: run server, swagger file generate

go-boilerplate

go-boilerplate

go-boilerplate's People

Contributors

kwanpham211195 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.