Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 977 Bytes

README.md

File metadata and controls

49 lines (34 loc) · 977 Bytes

MSA Template Repository for GitOps

Goal

Goal

Prerequisite

  • poetry >= 1.1.13
  • python >= 3.8
    • pre-commit >= 2.20.0

Installation

Setup

# Clone Repository
git clone https://github.com/jungmir/msa_template.git

# Move into project
cd msa_template/${service name}
# e.g)
cd msa_template/User

# install application dependencies
## using poetry
poetry check && poetry install

## using pip3
pip3 install -r requirements/requirements.txt

Run

# create docker network if first time
docker network create closed --subnet ${subnet} --gateway ${gateway}

# run
docker-compose up -d

Reference