Core Concepts
Understanding the fundamental concepts behind Annu Gulati Documentation
Projects and Organization
At the heart of Annu Gulati Documentation are projects, which serve as containers for your documentation. Each project can represent a product, service, or team initiative.
Documentation Types
Our platform supports various documentation formats to accommodate different needs and workflows.
Technical documentation for APIs, including endpoints, parameters, and examples.
{
"endpoint": "/api/users",
"method": "GET",
"description": "Retrieve user list",
"response": {
"users": [
{"id": 1, "name": "John Doe"}
]
}
}
Step-by-step instructions for end users and administrators.
Detailed specifications for developers and system architects.
Version Management
Keep track of changes and maintain multiple versions of your documentation simultaneously.
Create Version
Start a new version branch for major updates or releases.
Edit Content
Make changes to your documentation in the version branch.
Review & Merge
Review changes and merge them into the main branch.
# Using Git integration
git checkout -b v2.0-docs
# Make changes
git commit -m "Update API docs for v2.0"
git push origin v2.0-docs
# Platform version management
annu-docs version create v2.0
annu-docs version switch v2.0
annu-docs publish
Search and Discovery
Find information quickly with our powerful search capabilities and intelligent tagging system.
api, tutorial, troubleshooting to make your content easier to find.Collaboration Features
Work together seamlessly with built-in collaboration tools designed for technical teams.
Invite Collaborators
Add team members to your project with appropriate permissions.
Real-Time Editing
Edit documents simultaneously with conflict resolution.
Review Process
Submit changes for review before publishing.
Last updated today