mirror of
https://github.com/platformio/platformio-core.git
synced 2026-01-25 08:22:25 +01:00
876 B
876 B
Contributing
To get started, sign the Contributor License Agreement.
-
Fork the repository on GitHub.
-
Clone repository
git clone --recursive https://github.com/YourGithubUsername/platformio-core.git -
Run
pip install tox -
Go to the root of project where is located
tox.iniand runtox -e py27 -
Activate current development environment:
- Windows:
.tox\py27\Scripts\activate - Bash/ZSH:
source .tox/py27/bin/activate - Fish:
source .tox/py27/bin/activate.fish
- Windows:
-
Make changes to code, documentation, etc.
-
Lint source code
make lint -
Run the tests
make test -
Build documentation
tox -e docs(creates a directory _build under docs where you can find the html) -
Commit changes to your forked repository
-
Submit a Pull Request on GitHub.