You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/development_tips.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,18 +8,18 @@ This page provides some tips and tricks that may help you as a contributor to Ho
8
8
9
9
### Keep PRs simple
10
10
11
-
See the [Component Checklist](creating_component_code_review#5-make-your-pull-request-as-small-as-possible) for PR expectations.
11
+
See the [Component Checklist](/docs/creating_component_code_review#5-make-your-pull-request-as-small-as-possible) for PR expectations.
12
12
13
13
### Test package dependency changes in Home Assistant
14
14
15
-
See the [API library docs](api_lib_index#trying-your-library-inside-home-assistant) for more information.
15
+
See the [API library docs](/docs/api_lib_index#trying-your-library-inside-home-assistant) for more information.
16
16
17
17
### Test Core integration changes in your production Home Assistant environment
18
18
19
19
To test a core integration change in your production Home Assistant environment:
20
20
1. Copy the integration folder into `/config/custom_components`.
21
21
2. Add a **version** field to `manifest.json` (for example, `"version": "0.0.0"`).
22
-
3. If the integration uses localized strings, copy `strings.json` into `translations/en.json` under the integration folder as described in [Custom integration localization](internationalization/custom_integration).
22
+
3. If the integration uses localized strings, copy `strings.json` into `translations/en.json` under the integration folder as described in [Custom integration localization](/docs/internationalization/custom_integration).
23
23
4. Restart Home Assistant.
24
24
25
25
Home Assistant will always prioritize integrations in `custom_components` over the core integration. Don't forget to remove it once you are done testing; otherwise, you will be stuck on that version.
0 commit comments