Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 563 Bytes

README.md

File metadata and controls

51 lines (33 loc) · 563 Bytes

POKECH

Overview

Bring your best friends alive for battles with this single API

Requirements

  • Docker
  • Go
  • golangci-lint

Run the project

Install dependencies

make deps
make run

Testing and Linting

Run unit tests

make unit-test

Run linters

make lint

Build docker image and run container locally

Create image

docker build --tag [your tag] .

Create and run container based in the image that you created before.

docker run --name pokech -p 80:8085 [your tag]