The CLI for the AAA-py is (for now) based on Make and pipenv.
To setup the dependencies properly, make sure that the Python and git2 development headers are available in your PATH
.
One this is done, simply run make
, and the website will be available at http://localhost:8080 once building is completed (provided the 8080 port is available for the spawned server).
-
To only install the Python packages dependencies, run
make install
. -
To only build the website (using the latest upstream contents from the AAA), run
make build
-
To build the website (using already-present contents, without fetching from upstream), run
make build_local
-
To spawn the file server, run
make serve
local
:make local
will run thebuild_local
andserve
targets. Do NOT usemake local
at first use, since thisbuild_local
requires that the contents are already presents.