Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 908 Bytes

File metadata and controls

38 lines (29 loc) · 908 Bytes

hexagonal-arch

  1. Install miniconda using the previous repository (EDA), and create a environment with the following command:

conda create --name hexagonal-arch python=3.11
  1. Activate the environment with the following command:

conda activate hexagonal-arch
  1. you should see the name of the environment in the terminal, something like this:

(hexagonal-arch) $
  1. install poetry with pip

pip install poetry
  1. and run the following command to install the dependencies:

poetry install
  1. Resume of poetry commands

poetry add <package-name> # Add a package to the project.
poetry remove <package-name> # Remove a package from the project.
poetry install # Install the project dependencies.
poetry update # Update the project dependencies.
poetry show # Show information about the project dependencies.