/codejam-grand-geckos

Python Discord Code Jam 8

Primary LanguagePythonISC LicenseISC

Codejam 8 - Team Grand Geckos

About Python Discord's Code Jam 8

Development

Requires Python 3.8 or higher

Dependency:

pip install --user poetry

First Time Setup:

git clone https://github.com/imsofi/codejam-grand-geckos
cd codejam-grand-geckos
poetry install
poetry run pre-commit install

Running the Project:

Using poetry run:

poetry run task main

If you are in a poetry shell:

python3 -m grand_geckos

Before Commiting/Pushing:

Its reccomended to run it trough the linters manually:

With poetry:

poetry run task lint

Or run it trough poetry shell:

pre-commit run --all-files