Setup Guide — idirnet Shared Open Brain
Welcome to idirnet. This guide walks you through connecting your computer so you can read, write, and sync notes with the rest of the team.
You need three things:
- Google Drive for Desktop — syncs the vault to your machine
- Obsidian — your local editor for reading and writing notes
- Git + Node.js (optional) — only needed if you want to preview or deploy the website
Part 1: Google Drive Sync
This gives you a live copy of all vault files on your local machine.
macOS
- Download Google Drive for Desktop
- Open the installer and follow the prompts
- Sign in with your @idirnet.com Google account
- Once signed in, Google Drive appears in Finder under Locations in the left sidebar
- The shared idirnet vault lives at:
Or if using My Drive:~/Library/CloudStorage/GoogleDrive-you@idirnet.com/Shared drives/idirnet~/Library/CloudStorage/GoogleDrive-you@idirnet.com/My Drive/idirnet - To confirm it’s working, open Finder → navigate to the path above → you should see the
content/folder with all the vault notes
Finding your exact path
Open Finder, click Google Drive in the sidebar, navigate into the idirnet folder, then drag the folder into Terminal — it will paste the full path.
Windows
- Download Google Drive for Desktop
- Run the installer
- Sign in with your @idirnet.com Google account
- Google Drive mounts as a drive letter (usually G:)
- The vault lives at:
Or if using My Drive:G:\Shared drives\idirnetG:\My Drive\idirnet - Open File Explorer and navigate to confirm you see the
content/folder
What sync does
- Changes you make locally appear for everyone within seconds
- Changes others make appear on your machine automatically
- If two people edit the same file at the same time, Google Drive creates a conflict copy (see Part 4 below)
Part 2: Obsidian Setup
Obsidian is the Markdown editor everyone uses to read and write notes.
Install Obsidian
- Download Obsidian (free for personal use)
- Install and open it
Open the vault
- In Obsidian, click Open folder as vault
- Navigate to your Google Drive sync folder and select the
contentfolder:- macOS:
~/Library/CloudStorage/GoogleDrive-you@idirnet.com/.../idirnet/content - Windows:
G:\...\idirnet\content
- macOS:
- Click Open
- Obsidian will create a
.obsidianfolder insidecontent/with your local settings
Open
content/, notidirnet/The vault root should be the
content/folder — this is where all the notes live. Opening the parentidirnet/folder would expose Quartz config files in your editor.
Enable community plugins
- Go to Settings → Community plugins
- Turn off Restricted mode (click “Turn on community plugins”)
- Click Browse and install these plugins:
| Plugin | Purpose | Required? |
|---|---|---|
| Templater | Auto-fills note templates with dates and metadata | Yes |
| Dataview | Query and list notes dynamically | Optional |
| Calendar | Visual calendar for daily notes | Optional |
- Enable each plugin after installing
Configure Templater
- Go to Settings → Templater
- Set Template folder location to:
50-Templates - Turn on Trigger Templater on new file creation (optional but recommended)
Configure core settings
These should already be set by the shared config, but verify:
- Settings → Files & Links:
- New file location:
In the folder specified below - Folder to create new notes in:
00-Inbox - Default location for new attachments:
In the folder specified below - Attachment folder path:
60-Assets - Use Wikilinks: ON (this is critical)
- New file location:
Part 3: Creating Your First Note
Quick capture (Fleeting note)
- Press
Cmd+N(Mac) orCtrl+N(Windows) to create a new note - It will appear in
00-Inbox/ - Open the command palette:
Cmd+P/Ctrl+P - Type Templater and select “Templater: Insert template”
- Choose Fleeting-Note
- Fill in the
authorfield with your name - Rename the file using the format:
YYYYMMDDHHMM-your-slug.md- Example:
202603121430-interesting-idea-about-networks.md
- Example:
From a source (Literature note)
- Create a new note in
10-Literature/- Right-click
10-Literaturein the file explorer → New note
- Right-click
- Apply the Literature-Note template
- Fill in
source,source_author,source_url, andauthor - Write your summary in your own words
- Link to related notes using
[[wikilinks]]
A refined idea (Permanent note)
- Create a new note in
20-Permanent/ - Apply the Permanent-Note template
- Write one atomic idea — if you’re writing about two things, make two notes
- Link generously:
[[Related Concept]],[[Another Idea]] - Add relevant tags:
#domain/subtopic
Publishing
- Set
publish: truein the frontmatter to make a note visible on the website - Set
publish: false(or remove the field) to keep it private - The website rebuilds automatically when changes are pushed to GitHub
Part 4: Collaboration Rules
Always identify yourself
Fill in the author: field in every note’s frontmatter with your name.
Don’t overwrite others
If you disagree with someone’s note or want to add to it, create a new linked note rather than editing theirs. Reference the original:
## My response to [[Original Note Title]]
I think the opposite because...If you need to add a small comment to someone’s note, use a callout:
> [!note] @YourName
>
> I think this also connects to [[Some Other Idea]]Handle sync conflicts
If Google Drive creates a conflict file (e.g., note (conflict from MacBook).md):
- Open both the original and the conflict file
- Compare the differences
- Merge any new content into the original
- Delete the conflict file
Process your inbox
Regularly review notes in 00-Inbox/:
- Promote good ideas to
20-Permanent/or10-Literature/ - Archive stale captures to
70-Archive/ - Delete junk
Part 5: Website Preview (Optional)
If you want to preview how notes will look on the published website:
Prerequisites
- Node.js v22+ installed
- Git installed
Clone and run
git clone <repo-url> idirnet
cd idirnet
npm install
npx quartz build --serveOpen http://localhost:8080 in your browser.
Most contributors don't need this
If you’re only writing notes, Google Drive + Obsidian is all you need. The website preview is for people who want to check formatting or work on the site itself.
Quick Reference
| Task | How |
|---|---|
| New quick note | Cmd+N → apply Fleeting template |
| New note from source | Create in 10-Literature/ → apply Literature template |
| New refined idea | Create in 20-Permanent/ → apply Permanent template |
| Link to another note | Type [[ and start typing the note name |
| Add a tag | In frontmatter: tags: [domain/subtopic] |
| Publish a note | Set publish: true in frontmatter |
| Search everything | Cmd+Shift+F (global search) |
| Find a note | Cmd+O (quick switcher) |