Welcome to the unified documentation portal for all Superdesk repositories. This site provides comprehensive documentation for Superdesk, an open-source headless CMS designed for newsrooms.
Visit the live documentation at: https://docs.superdesk.org (or GitHub Pages URL)
This documentation covers:
- Getting Started: Installation guides, quick start, and introduction to Superdesk
- User Guide: How to use Superdesk for daily news operations
- Developer Guide: Technical documentation for developers
- Core Backend (Python/Flask)
- Client Frontend (TypeScript/React)
- Planning Module
- Architecture Overview
- API Reference: REST API documentation with OpenAPI specifications
- Deployment: Production deployment guides
- Contributing: How to contribute to Superdesk
- Node.js 18.x or higher
- npm 8.x or higher
# Clone the repository
git clone https://github.com/superdesk/superdesk-docs.git
cd superdesk-docs
# Install dependencies
npm install
# Start development server
npm startThe documentation site will be available at http://localhost:3000.
# Build for production
npm run build
# The static site will be generated in the build/ directory# Serve the production build locally
npm run servesuperdesk-docs/
├── docs/ # Documentation content
│ ├── getting-started/ # Getting started guides
│ ├── user-guide/ # User documentation
│ ├── developer-guide/ # Developer documentation
│ │ ├── core/ # Backend (superdesk-core)
│ │ ├── client/ # Frontend (superdesk-client-core)
│ │ └── planning/ # Planning module
│ ├── deployment/ # Deployment guides
│ └── contributing/ # Contribution guidelines
├── static/ # Static assets
│ ├── img/ # Images
│ └── openapi/ # OpenAPI specifications
├── src/ # Custom React components
│ ├── css/ # Stylesheets
│ └── pages/ # Custom pages
├── scripts/ # Utility scripts
│ └── pull-docs.sh # Documentation sync script
├── docusaurus.config.ts # Docusaurus configuration
├── sidebars.ts # Sidebar configuration
└── package.json # Dependencies
The scripts/pull-docs.sh script can be used to automatically sync documentation from source repositories:
./scripts/pull-docs.shThis script:
- Pulls README files from source repositories
- Downloads OpenAPI specifications
- Syncs additional documentation (placeholders for future enhancements)
The sync runs automatically daily via GitHub Actions (see .github/workflows/sync-docs.yml).
- Docusaurus 3: Modern static website generator
- TypeScript: Type-safe JavaScript
- OpenAPI Docs Plugin: API documentation from OpenAPI specs
- React: UI framework
This documentation covers the following repositories:
- superdesk-core: Python backend (Flask/Eve)
- superdesk-client-core: TypeScript/React frontend
- superdesk-planning: Planning and events module
- superdesk: Main deployment repository
We welcome contributions to improve the documentation! Here's how you can help:
- Fork the repository
- Create a branch:
git checkout -b docs/my-improvement - Make your changes: Edit markdown files in the
docs/directory - Test locally: Run
npm startto preview changes - Commit:
git commit -m "docs: describe your changes" - Push:
git push origin docs/my-improvement - Create a Pull Request
See CONTRIBUTING.md for detailed guidelines.
This repository previously contained documentation in the following folders:
api-reference/: Legacy API reference documentationgood-practices/: Best practices and tipsinstall-guide/: Installation guidesquick-start/: Quick start guides
Migration Status: Content from these folders is being migrated into the new Docusaurus structure. The legacy folders are preserved for reference but will eventually be removed once all content is migrated.
If you have content in these folders that needs to be migrated:
- Review the existing content
- Identify the appropriate location in the new structure
- Convert to Markdown if needed
- Submit a PR with the migrated content
Want to contribute to Superdesk itself? Check out:
The documentation content is licensed under Creative Commons Attribution 4.0 International.
The Superdesk software is licensed under GNU Affero General Public License v3.0.
- Documentation Issues: Open an issue in this repository
- Superdesk Issues: Open an issue in the respective repository
- Questions: Use GitHub Discussions
This documentation is maintained by the Superdesk community. Special thanks to all contributors who help improve the documentation.
Built with ❤️ using Docusaurus