Getting Started with Next Step Conrad
Set up your account and create your first documentation space in just a few minutes to begin organizing your projects.
Prerequisites
Before you begin, ensure you have:
- A valid email address for account creation
- Access to a modern web browser like Chrome, Firefox, or Safari
- Optional: Existing project files in Markdown, PDF, or ZIP format for import
Next Step Conrad is a web-based tool. No downloads or installations are required.
Sign Up for an Account
Follow these steps to create your account quickly.
Visit the Homepage
Go to https://nextstepconrad.com and click the Sign Up button in the top-right corner.
Enter Your Details
Provide your email address, create a strong password, and complete any CAPTCHA verification.
Verify Email
Check your inbox for a verification email from Next Step Conrad and click the confirmation link.
Complete Onboarding
Answer a few quick questions about your project needs to customize your dashboard.
Create Your First Documentation Workspace
Once logged in, set up your first space.
Access Dashboard
From the sidebar, select New Workspace.
Name Your Space
Enter a name like My Project Docs and choose a description.
Set Permissions
Configure access: public, private, or team-shared.
Save and Enter
Click Create to enter your new documentation workspace.
Navigate the Dashboard Interface
The dashboard provides an intuitive interface for managing your documentation.
View all workspaces, recent activity, and quick actions like New Page or Search Docs.
Key sections include:
- Workspaces list
- Activity feed
- Search bar
Inside a workspace:
- Sidebar for pages and folders
- Editor pane for content
- Preview mode toggle
Access global settings via the user menu:
- Account details
- Billing
- Integrations
Import Initial Project Files
Bring your existing files into Next Step Conrad.
Drag and Drop
In your workspace, use the import area to drag files directly.
Upload via Menu
Click Import > Files and select Markdown, PDF, or ZIP archives.
API Import (Advanced)
Use the API for bulk imports. First, generate an API key from Settings > Integrations.
const response = await fetch('https://api.nextstepconrad.com/v1/workspaces/{workspaceId}/import', {
method: 'POST',
headers: {
'Authorization': `Bearer ${YOUR_API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
files: ['path/to/doc1.md', 'path/to/doc2.md']
})
});
curl -X POST https://api.nextstepconrad.com/v1/workspaces/{workspaceId}/import \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"files": ["path/to/doc1.md", "path/to/doc2.md"]}'
Basic Setup Tips for Beginners
Organize pages into folders early. Use templates for consistent formatting across docs.
Next Steps
Explore more features to enhance your documentation workflow.