Usage Guide
Learn how to use plumio effectively for your note-taking needs.
First Time Setup
Creating Your Admin Account
- Navigate to your plumio instance (e.g.,
http://localhost:3000) - You'll be prompted to create an admin account
- Enter your desired username and a strong password
- Click "Create Account"
Password Requirements
Use a strong password with at least 12 characters, including uppercase, lowercase, numbers, and special characters.
Writing Notes
Creating a New Note
- Select an organization from the sidebar
- Click the "+" button
- Start writing in the editor
- Your note is automatically saved
Markdown Editing
plumio supports full markdown syntax:
Headings
# Heading 1
## Heading 2
### Heading 3
Text Formatting
**Bold text**
_Italic text_
~~Strikethrough~~
`Inline code`
Lists
- Bullet point
- Another point
- Nested point
1. Numbered list
2. Second item
3. Third item
Links and Images
[Link text](https://example.com)

Code Blocks
```javascript
function hello() {
console.log("Hello, world!");
}
```
Tables
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
Task Lists
- [x] Completed task
- [ ] Incomplete task
- [ ] Another task
Math Equations
Inline math: $E = mc^2$
Block math:
$$
\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}
$$
Import & Export
Exporting Notes
Export your notes for backup or migration.
The export zip file contains:
- All folders
- All notes in markdown format
- A
metadata.jsonfile with note/folder metadata (color, favorite)
Importing Notes
Supported import formats:
- plumio JSON exports
- ZIP archives with markdown files
- Other third party exports that follow the same structure (Obsidian works for example)
File filtering
When importing a backup, only .md files and folders will be imported. Any hidden or other file types will be ignored.
User Management (Admin)
Creating Additional Users
As an admin:
- Go to Settings → Admin Panel
- Click "Create User"
- Enter username and password
- Assign role (User or Admin)
- Click "Create"
User Roles
Admin
- Full access to all features
- Can create and delete users
- Can manage current organization
- Access to admin panel
Adding Users to Organizations
Adding users to organizations can be done through the Organization Panel inside the settings. Users can be added through their username.
Settings
Backup Strategy
- Enable Automated Backups (see Configuration guide)
- Export Regularly as additional backup
- Test Restore Process periodically
- Keep Backups Off-site for disaster recovery
Next Steps
- Learn about Configuration for advanced setup
- Set up Backups
- Explore Environment Variables for customization