Paco Hope a694c2a654 | ||
---|---|---|
.. | ||
source | ||
Makefile | ||
README.md | ||
requirements.txt | ||
sync.sh |
README.md
Building Documentation
This is the documentation that appears on The tfscript website.
Building the Docs
Before you can build the docs, you have to do the Prerequisites below.
- Run
make html
- The docs appear in
docs/build/html
. You can open them in a browser (e.g., on Mac doopen docs/build/html/index.html
) - Run
sync.sh
to upload it to the S3 bucket (only works if you have the right profile/permissions in AWS)
Prerequisites
I recommend building a Python venv.
Windows
- Make the virtual environment
python3 -m venv .venv
- Activate it:
- Windows:
.venv\Scripts\activate
- Other:
source .venv/bin/activate
- Install all the requirements into it:
pip install -r requirements.txt
pip3 install -e .
Now you can run the steps above in the Building section.