Quick Start Guide
Set up your account and create your first documentation space in minutes to begin organizing your project docs.
const formData = new FormData();
formData.append('file', documentFile);
formData.append('workspaceId', 'ws_1234567890abcdef');
const response = await fetch('https://api.logicandintelligencelab.com/v1/workspaces/ws_1234567890abcdef/documents', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN'
},
body: formData
});
const result = await response.json();
console.log(result);
curl -X POST https://api.logicandintelligencelab.com/v1/workspaces/ws_1234567890abcdef/documents \\
-H "Authorization: Bearer YOUR_API_TOKEN" \\
-F "file=@/path/to/document.md" \\
-F "workspaceId=ws_1234567890abcdef"
Prerequisites
You need a modern web browser like Chrome, Firefox, or Safari and a valid email address. No software installation required.
Get Started in Minutes
Follow these steps to register, create your first documentation workspace, and upload initial documents.
Sign Up for an Account
Visit the sign-up page.
Fill in your email, create a strong password, and verify your email address. You'll receive a confirmation link—click it to activate your account.
Use a business email for team collaborations.
Create Your First Workspace
Log in at app.logicandintelligencelab.com.
Click New Workspace in the dashboard. Enter a name like My Project Docs, add a description, and select your preferred language.
Your workspace appears in the sidebar, ready for organization.
Upload Initial Documents
In your workspace, select Upload from the top menu.
Drag and drop Markdown files, PDFs, or images. Supported formats include .md, .pdf, .png, and .jpg (up to 50MB per file).
Documents organize automatically into folders based on metadata.
Upload Methods
Choose your preferred method to add documents.
Use the drag-and-drop interface for quick uploads.
- Navigate to your workspace.
- Click Upload Files.
- Select or drop files.
Preview thumbnails appear immediately.
Integrate uploads programmatically.
Your workspace identifier.
Bearer token obtained from account settings.
Basic Navigation Tour
Master the interface quickly.
Sidebar Navigation
Access workspaces, search documents, and manage teams from the left sidebar.
Editor and Preview
Click any document to open the split-view editor. Edit Markdown live and preview changes side-by-side.
Search and Folders
Use the global search bar to find content across workspaces. Folders auto-organize by tags.
Next Steps
Explore Introduction
Learn core concepts and features.
Set Up Authentication
Secure your API access and teams.
View Changelog
Stay updated with latest releases.
Your first workspace is live! Customize folders, invite collaborators, and start building your knowledge base. Check the help center for more.
Last updated today