gecko-dev/devtools/docs
Cosm 917335fa1c Bug 1395956 - Update gecko.readthedocs links to the new firefox-source-docs.mozilla.org location. r=chutten 2017-09-02 22:11:02 +05:30
..
backend Bug 1395262 - use plain console.error in devtools promise catches; r=bgrins 2017-08-30 12:05:41 -06:00
contributing
files
frontend Bug 1395956 - Update gecko.readthedocs links to the new firefox-source-docs.mozilla.org location. r=chutten 2017-09-02 22:11:02 +05:30
getting-started Bug 1395295 - Use 'mach run' where it was intended in the DevTools documentation. r=sole 2017-09-02 00:57:00 -04:00
resources
styles
tests
tools
.gitignore
README.md
SUMMARY.md Bug 1393767 - add documentation about DevTools preferences;r=sole 2017-08-29 12:06:52 +02:00
bugs-issues.md
contributing.md
preferences.md Bug 1393767 - add documentation about DevTools preferences;r=sole 2017-08-29 12:06:52 +02:00

README.md

Firefox Developer Tools

Hello!

This documentation is for developers who want to work on the developer tools. Get started here.

If you are looking for end user documentation, check out this MDN page instead.

Happy developing!

About this documentation

This guide is built with MarkDown files and GitBook.

The source code for this documentation is distributed with the source code for the tools, in the docs/ folder.

If you want to contribute to the documentation, clone the repository, make your changes locally, and then regenerate the book to see how it looks like before submitting a patch:

# Install GitBook locally
npm install -g gitbook-cli

# Go into the docs directory
cd /path/to/mozilla-central/devtools/docs/

# Generate the docs and start a local server
gitbook serve

# You can now navigate to localhost:4000 to see the output

# Or build the book only (this places the output into `docs/_book`)
gitbook build