Quickstart
Guide to quickly set up your account and create your first documentation project.
Prerequisites
Before starting, ensure you have:
- A modern web browser like Chrome, Firefox, or Safari
- An email address for account verification
- Optional: GitHub account for version control integration
Create Your Account
Follow these steps to register and log in to CODE IN CO SOLUTIONS documentation platform.
Visit the signup page
Navigate to https://codeinco.tech and click Sign Up in the top-right corner.
Enter your details
Provide your email, full name, and a strong password. Accept the terms of service.
Verify your email
Check your inbox for a verification email and click the link to activate your account.
Log in
Return to the login page, enter your credentials, and access your dashboard.
Create a New Documentation Space
A documentation space organizes all your project docs. Set up your first one now.
New Space
From the dashboard, click New Documentation Space.
Configure
Enter a name like MyProjectDocs, select visibility (public/private), and choose a template.
Save
Click Create Space to generate your new documentation hub.
Use the CLI for programmatic setup:
codeinco-docs init my-project-docs --template starter --visibility private
cd my-project-docs
codeinco-docs serve
Add and Organize Your First Documents
Start building content with MDX files.
---
title: Introduction
description: Welcome to your docs.
---
## Overview
Your project documentation starts here.
---
title: Quickstart
description: Get up and running fast.
---
## Steps
1. Install dependencies
2. Run the app
Organize files in folders like guides/, api/, and changelog.mdx for structure.
Use frontmatter YAML at the top of each .mdx file for metadata like title and description.
Preview and Publish
Test changes before going live.
Preview locally
Run codeinco-docs serve in your space directory to view at http://localhost:3000.
Commit changes
Use Git: git add . && git commit -m "Add first docs".
Publish
Click Publish in the dashboard or run codeinco-docs deploy.
Next Steps
Explore more features to enhance your documentation.