Skip to content

Getting started with using the define‐json repo

Anywho Notch edited this page Mar 20, 2026 · 2 revisions

Getting Started with the Makefile (Windows)

  1. Clone the repo
git clone https://github.com/TeMeta/define-json
cd define-json
  1. Install make — reads and runs the Makefile commands
  • Open PowerShell as Administrator
  • Check if already installed: make --version
  • If not, install via Chocolatey: choco install make
  • If you don't have Chocolatey yet, check first: choco --version
  • If missing, install Chocolatey from https://chocolatey.org/install
  1. Install poetry — manages Python dependencies used by the Makefile
  • Install via pipx: pipx install poetry
  • If pipx is missing, run: pip install pipx then pipx ensurepath, then restart PowerShell
  1. Install all project dependencies
make install
  1. Explore available commands
make help

Footnote

  • If you need to uninstall dependencies for any reason, run poetry env remove --all

Clone this wiki locally