- Move dist-git investigation to Completed - Fix the multiline syntax in dist-git-move/index - Fix the syntax in README.md Signed-off-by: Michal Konecny <mkonecny@redhat.com>
38 lines
661 B
Markdown
38 lines
661 B
Markdown
# The Advance Reconnaissance Crew (ARC)
|
|
|
|
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
|
|
|
|
|
|
## How to build locally
|
|
|
|
1. Create python virtual environment
|
|
|
|
```
|
|
python3 -m venv .venv
|
|
```
|
|
|
|
2. Activate virtual environment
|
|
|
|
```
|
|
. .venv/bin/activate
|
|
```
|
|
|
|
3. Install requirements
|
|
|
|
```
|
|
pip install -r docs/requirements.txt
|
|
```
|
|
|
|
4. Execute the Makefile
|
|
|
|
```
|
|
cd docs
|
|
|
|
make html
|
|
```
|
|
|
|
5. You will find the compiled HTML in `docs/_build/html`
|