https://github.com/mozilla/enterprise-admin-reference
Admin reference for Firefox as an enterprise browser, including policy documentation and guides.
https://github.com/mozilla/enterprise-admin-reference
documentation enterprise firefox firefox-esr
Last synced: 5 months ago
JSON representation
Admin reference for Firefox as an enterprise browser, including policy documentation and guides.
- Host: GitHub
- URL: https://github.com/mozilla/enterprise-admin-reference
- Owner: mozilla
- Created: 2025-12-01T11:36:57.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2026-01-13T08:46:08.000Z (5 months ago)
- Last Synced: 2026-01-13T10:57:08.732Z (5 months ago)
- Topics: documentation, enterprise, firefox, firefox-esr
- Language: MDX
- Homepage: https://mozilla.github.io/enterprise-admin-reference/
- Size: 553 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Firefox enterprise admin reference
This project hosts reference documentation for Firefox as an enterprise browser.
## Getting started
Node.js and `npm` are required, for example:
```bash
node -v
# v23.11.1
npm -v
# 11.4.2
```
The quickest way to get started is to install dependencies and run in development mode:
```bash
npm i && npm run dev
```
For a full site build, including site search, run `build` then `preview`:
```bash
npm run build && npm run preview
```
### Commands
All commands are run from the root of the project:
| Command | Action |
| :------------------------- | :----------------------------------------------- |
| `npm install` (or `npm i`) | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |
## Project structure
The project is built using Starlight.
Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory.
Each file is exposed as a route based on its file name.
Images can be added to `src/assets/` and embedded in Markdown with a relative link.
Static assets, like favicons, can be placed in the `public/` directory.
### Code examples
Reusable code snippets can be placed in `src/examples/`.
To reuse a snippet like `src/examples/policy.json`, include it in markdown like so:
```mdx
import { Code } from "@astrojs/starlight/components";
import policy from "/src/examples/policy.json?raw";
See my example:
```
## Starlight documentation
See [Starlight's docs](https://starlight.astro.build/), or read [the Astro documentation](https://docs.astro.build).