Documentation for the Cislunar Explorers mission
Simply go to the documentation website!
Create a virtual Python environment and install the necessary dependencies from the requirements file. Make sure you run this from the root of the repository!
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
You can exit this environment by running deactivate
. To re-enter an existing environment, all you need is source venv/bin/activate
.
To build/view your changes locally without needing to push, run the following:
make html
cd build/html
python -m http.server 8080
Then, visit http://localhost:8080
in a browser.