Skip to content

Running Fireant

Matthew Treadwell edited this page Apr 9, 2021 · 2 revisions

Run locally

In order to run locally, you must have python 3.9+, JDK 11, and Apache ant. All python packages from requirements.txt must also be installed. After installing dependencies, Fireant can run from the command line.

python main.py

Run with Docker

In order to run with docker, ensure docker is installed. The following commands will compile and run the docker container for fireant.

docker image build -t fireant-ci/fireant .
docker run -it fireant-ci/fireant

Run unit tests

Ensure pytest is installed. Unit tests can be run with pytest in the main directory.

pytest
Clone this wiki locally