Report bugs at https://github.com/Cislunar-Explorers/FlightSoftware/issues.
If you are reporting a bug, please include:
- Any details about your local setup that might be helpful in troubleshooting.
- Detailed steps to reproduce the bug.
Look through the GitHub issues for bugs. Anything tagged with "bug" and "help wanted" is open to whoever wants to implement it.
Look through the GitHub issues for features. Anything tagged with "enhancement" and "help wanted" is open to whoever wants to implement it.
Cislunar could always use more documentation, whether as part of the official Cislunar docs, in docstrings, or even on the web in blog posts, articles, and such.
The best way to send feedback is to file an issue at https://github.com/Cislunar-Explorers/FlightSoftware/issues.
If you are proposing a feature:
- Explain in detail how it would work.
- Keep the scope as narrow as possible, to make it easier to implement.
- Remember that this is a student-driven project, and that contributions are welcome :)
Ready to contribute? Here's how to set up FlightSoftware for local
development.
-
Fork or clone the repo.
-
Setup the environment. The project comes with 2 optional dependency lists:
rpi(for running on the Raspberry Pi) anddev(for code development).python -m venv venv source ./venv/bin/activate python -m pip install --upgrade pip pip install -e ."[rpi, dev]" # or just [dev] pip install -e ./opnav pre-commit install
Create a
.envfile based off of.env.example. -
Create a branch for local development.
git checkout -b name-of-your-bugfix-or-feature
-
Commit your changes and push your branch to GitHub::
git add . git commit -m "Your detailed description of your changes." git push origin name-of-your-bugfix-or-feature
-
Submit a pull request through the GitHub website.
Before you submit a pull request, check that it meets these guidelines:
- The pull request should include tests.
- If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring.
When you need to install a dependency that:
- is only compatible with the Raspberry Pi: add its name to the list
variable
PI_INSTALL_REQUIRESin setup.py. - does not depend exclusively on the Raspberry Pi, but will also work with
Linux, Mac OSX, etc., you should add it to the
INSTALL_REQUIRESlist variable in setup.py.
The project uses code from the audreyr/cookiecutter-pypackage project template.