/flask-pokedex

Primary LanguagePythonMIT LicenseMIT

Pokedex

Quickstart

Clone the main repository locally:

$ git clone https://github.com/nkabrown/flask-pokedex.git
$ cd flask-pokedex

Create a virtual environment

Linux/macOs

$ python3 -m venv vpokedex
$ source vpokedex/bin/activate

Windows

> py -3 -m venv vpokedex
> vpokedex\Scripts\activate

Install python dependencies in virtual environment

$ pip3 install -r requirements.txt

Install the pre-commit hooks

$ pre-commit install