/pokedexlab

Primary LanguagePython

Pokedex

A simple tutorial demonstrating the utilisation of Flask for building REST-based APIs

Installation

  1. Use virtual environment
python3 -m venv venv
source venv/bin/activate
  1. Install packages
pip install -r requirements.txt
  1. Run using Gunicorn
gunicorn wsgi:app --reload