Add link to setup development in menu

This commit is contained in:
Paulus Schoutsen 2016-02-07 20:54:47 -08:00
parent 0d1fcc8e8e
commit d00982efff
2 changed files with 18 additions and 19 deletions

View File

@ -15,18 +15,19 @@
<li> <li>
<a>Developers <i class="icon icon-caret-down"></i></a> <a>Developers <i class="icon icon-caret-down"></i></a>
<ul> <ul>
<li><a href="{{ root_url }}/developers/architecture/">Architecture</a></li> <li><a href="/developers/">Setup Development</a></li>
<li><a href="{{ root_url}}/developers/frontend/">Frontend development</a></li> <li><a href="/developers/architecture/">Architecture</a></li>
<li><a href="{{ root_url}}/developers/creating_components/"> <li><a href="/developers/frontend/">Frontend development</a></li>
<li><a href="/developers/creating_components/">
Creating components Creating components
</a></li> </a></li>
<li><a href="{{ root_url}}/developers/add_new_platform/"> <li><a href="/developers/add_new_platform/">
Adding platform support Adding platform support
</a></li> </a></li>
<li><a href="{{ root_url }}/developers/api/">API</a></li> <li><a href="/developers/api/">API</a></li>
<li><a href="{{ root_url }}/developers/credits/">Credits</a></li> <li><a href="/developers/credits/">Credits</a></li>
</ul> </ul>
</li> </li>
<li><a href="{{ root_url }}/blog/">Blog</a></li> <li><a href="/blog/">Blog</a></li>
<li><a href="{{ root_url }}/help/">Need help?</a></li> <li><a href="/help/">Need help?</a></li>
</ul> </ul>

View File

@ -1,7 +1,7 @@
--- ---
layout: page layout: page
title: "Developers" title: "Setup Development"
description: "Home Assistant developer information. Everything to get you started" description: "Everything to get you started developing for Home Assistant."
date: 2014-12-21 13:32 date: 2014-12-21 13:32
sidebar: false sidebar: false
comments: false comments: false
@ -36,19 +36,17 @@ After following these steps, running `hass` will invoke your local installation.
Improvements to Home Assistant should be submitted one feature at a time using Github pull requests. Improvements to Home Assistant should be submitted one feature at a time using Github pull requests.
1. Go to [the Home Assistant repository](https://github.com/balloob/home-assistant) and click fork in the top right. 1. From your fork, create a new branch to hold your changes
2. Follow steps in the previous section but with your forked repository.
3. Create a new branch to hold your changes
`git checkout -b some-feature` `git checkout -b some-feature`
4. Make the changes you want 2. Make the changes you want
5. Check your changes for style violations 3. Test your changes and check for style violations
`./script/lint` `./script/test`
6. Commit the changes 4. Commit the changes
`git add .` `git add .`
`git commit -m "Added some-feature"` `git commit -m "Added some-feature"`
7. Push your commited changes back to your fork on GitHub 5. Push your commited changes back to your fork on GitHub
`git push origin HEAD` `git push origin HEAD`
8. Follow [these steps](https://help.github.com/articles/creating-a-pull-request/) to create your pull request. 6. Follow [these steps](https://help.github.com/articles/creating-a-pull-request/) to create your pull request.
### {% linkable_title Further reading %} ### {% linkable_title Further reading %}