Skip to content

Cislunar-Explorers/Documentation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Documentation

Documentation Status

Documentation for the Cislunar Explorers mission

Viewing the Documentation

Simply go to the documentation website!

Adding to the Documentation

Setting up

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.

Viewing your changes locally

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.