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 localwill run thebuild_localandservetargets. Do NOT usemake localat first use, since thisbuild_localrequires that the contents are already presents.