Łapka (pronounce as ˈwapka, Polish for a paw) is an app to help browse and adopt animals from shelters 😍 🐶 🐱
Ten plik jest również dostępny po polsku.
This project requires Python 3.6. I recommend using pyenv to manage Python versions installed on your system. And this is how to set up your dev environment after installing pyenv:
ENV_NAME=lapka # or any other name you like
PY36=3.6.0
pyenv install 3.6.0
pyenv virtualenv $ENV_NAME $PY36 # create a virtualenv for development
pyenv local $PY36/env/$ENV_NAME $PY36 # set both versions as your local Python
# 1st for development, 2nd for Tox
pip install -r requirements-dev.txt -r requirements.txt
Tests, coverage and linter are run using Tox. Just type tox
from the
project root directory and enjoy results.