Getting StartedIntroduction
Getting Started

Introduction

Overview of GTECH Documentation and its core capabilities

Getting Started

You use GTECH Documentation to organize and manage project documentation in a centralized space. It provides tools for creating, editing, and collaborating on docs with version control and search features. Start by setting up your workspace to streamline your documentation workflow.

Create Workspace

Sign up and create a new workspace for your project.

// Example API call to create workspace
const response = await fetch('/api/workspaces', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ name: 'My Project Docs' })
});

Upload Documents

Import existing files or create new ones directly in the platform.

Invite Collaborators

Share access with your team via email invitations.

Access GTECH Documentation through any modern web browser. No installation required; simply log in and start managing your docs.

// Client-side integration example
import { GTechDocs } from '@gtech/docs-sdk';
const docs = new GTechDocs({ apiKey: 'your-api-key' });
const workspace = await docs.createWorkspace('Project Docs');

GTECH Documentation serves as a comprehensive platform for technical writing and knowledge management. It supports Markdown, MDX, and rich media embeds, making it ideal for developer docs, user guides, and internal wikis. You maintain version history for every document, ensuring traceability and rollback capabilities.

Ensure your API keys are securely stored in environment variables to protect sensitive data.

This setup positions you to efficiently manage documentation across your projects. Explore the features page for deeper insights into advanced functionalities like custom themes and analytics.

Was this page helpful?