update documentation

This commit is contained in:
Dan Anglin 2024-09-23 17:08:24 +01:00
parent 0f5826a7de
commit c098a4c8ce
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -1,3 +1,38 @@
# pokecli
A simple CLI application for exploring the Pokémon world.
## Overview
**pokecli** is a simple CLI application that uses the [PokéAPI](https://pokeapi.co/) for exploring the Pokémon world and capturing Pokémon.
### Repository mirrors
- **Code Flow:** https://codeflow.dananglin.me.uk/apollo/pokecli
- **GitHub:** https://github.com/dananglin/pokecli
## Requirements
- **Go:** A minimum version of Go 1.23.1 is required for building the pokecli. Please go [here](https://go.dev/dl/) 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](https://magefile.org/) if you have it installed.
```
mage clean build
```
## Usage
TBC