@@ -39,12 +39,8 @@ cd docs
3939# Install dependencies
4040npm install
4141
42- # Start development server (all products)
42+ # Start development server
4343npm run start
44-
45- # Single product mode (recommended for development)
46- npm run start 1secure
47- npm run start accessanalyzer/12.0
4844```
4945
5046## 📁 Project Structure
@@ -79,8 +75,7 @@ npm run start accessanalyzer/12.0
7975│ │ └── 12.0.js
8076│ └── [other product sidebars]/
8177├── scripts/ # Development utilities
82- │ ├── start-wrapper.js # Single-product dev mode
83- │ └── build-single.js # Single-product builds
78+
8479├── static/ # Static assets
8580│ └── img/
8681│ ├── branding/ # Logos and brand assets
@@ -95,39 +90,25 @@ npm run start accessanalyzer/12.0
9590
9691``` bash
9792# Development
98- npm run start # All products (slower, loads everything)
99- npm run start [product] # start a solo product docs only
100- npm run start [product]/[version] # start a versioned product docs only
93+ npm run start # Start development server
10194
10295# Building & Testing
10396npm run build # Full production build
104- npm run build [product] # Full production build
105- npm run build [product]/[version] # Full production build
97+
10698# Utilities
10799npm run clear # Clear Docusaurus cache
108100npm run serve # Serve production build after `npm run build`
109101```
110102
111103### Development Workflow
112104
113- The new centralized system makes development much simpler :
105+ The centralized system makes development simple :
114106
1151071 . ** Start development server** : ` npm run start `
1161082 . ** Make changes** to documentation or configuration
1171093 . ** Hot reload** automatically updates the site
1181104 . ** All products and versions** work seamlessly
119111
120- ### Single Product Development (Legacy Script Support)
121-
122- For backward compatibility, single-product scripts still work:
123-
124- ``` bash
125- # Examples (optional - full site starts quickly now)
126- npm run start 1secure
127- npm run start accessanalyzer/12.0
128- npm run start identitymanager/saas
129- ```
130-
131112## ⚙️ Centralized Configuration System
132113
133114### Global Product Config: ` src/config/products.js `
@@ -371,14 +352,6 @@ npm run start
371352
3723533 . ** Test builds** :
373354
374- Test a build of the docs you edited:
375-
376- ``` bash
377- npm run build [product][/version]
378- ```
379-
380- Test a build of all docs:
381-
382355``` bash
383356npm run build
384357```
0 commit comments