A simple CLI application for exploring the Pokémon world.
Find a file
2024-09-23 22:27:24 +01:00
.forgejo/workflows build: update environment variables 2024-09-22 13:21:14 +01:00
cmd/pokecli fix: update prompt string plus some refactoring 2024-09-23 22:05:30 +01:00
internal fix: improve formatting of the help menu 2024-09-23 22:26:15 +01:00
magefiles fix: update prompt string plus some refactoring 2024-09-23 22:05:30 +01:00
.gitignore fix: update prompt string plus some refactoring 2024-09-23 22:05:30 +01:00
.golangci.yaml fix(BREAKING): update project name 2024-09-22 13:17:47 +01:00
go.mod fix(BREAKING): update project name 2024-09-22 13:17:47 +01:00
LICENSE chore: add LICENSE 2024-09-21 17:26:02 +01:00
README.md update documentation 2024-09-23 22:27:24 +01:00

pokecli

Overview

pokecli is a simple CLI application that uses the PokéAPI for exploring the Pokémon world and capturing Pokémon.

Repository mirrors

Requirements

  • Go: A minimum version of Go 1.23.1 is required for building the pokecli. Please go here to download the latest version.

Build the application

Clone this repository to your local machine.

git clone https://github.com/dananglin/pokecli.git

Build the application.

  • Build with go.

    go build -o pokecli .
    
  • Or build with mage if you have it installed.

    mage clean build
    

Usage

TBC