2021-01-13 12:00:12 +01:00
|
|
|
# The Advance Reconnaissance Crew (ARC)
|
2021-01-12 15:48:59 +00:00
|
|
|
|
2021-01-13 12:00:12 +01:00
|
|
|
This reprository contains the notes, documentation and ansible repository for
|
|
|
|
the investigation that the ARC team leads.
|
|
|
|
|
|
|
|
More documentation about the team can be found at:
|
|
|
|
https://fedora-arc.readthedocs.io/en/latest/index.html
|
2023-11-15 14:42:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
## How to build locally
|
|
|
|
|
|
|
|
1. Create python virtual environment
|
|
|
|
|
2023-11-20 14:06:21 +01:00
|
|
|
```
|
|
|
|
python3 -m venv .venv
|
|
|
|
```
|
2023-11-15 14:42:16 +01:00
|
|
|
|
|
|
|
2. Activate virtual environment
|
|
|
|
|
2023-11-20 14:06:21 +01:00
|
|
|
```
|
|
|
|
. .venv/bin/activate
|
|
|
|
```
|
2023-11-15 14:42:16 +01:00
|
|
|
|
|
|
|
3. Install requirements
|
|
|
|
|
2023-11-20 14:06:21 +01:00
|
|
|
```
|
|
|
|
pip install -r docs/requirements.txt
|
|
|
|
```
|
2023-11-15 14:42:16 +01:00
|
|
|
|
|
|
|
4. Execute the Makefile
|
|
|
|
|
2023-11-20 14:06:21 +01:00
|
|
|
```
|
|
|
|
cd docs
|
2024-01-02 16:42:04 +01:00
|
|
|
|
2023-11-20 14:06:21 +01:00
|
|
|
make html
|
|
|
|
```
|
2023-11-15 14:42:16 +01:00
|
|
|
|
|
|
|
5. You will find the compiled HTML in `docs/_build/html`
|