How to use Atelie

An eight-chapter guide from installation through daily use

1. 1. Installation

1) Double-click the downloaded .dmg in Finder to open it. 2) In the mounted DMG window, drag Atelie.app into /Applications. 3) Find Atelie in Launchpad or Spotlight and launch it. Because the app is signed, there is no need to right-click and open.

Tip

It's signed, notarized and stapled, so you won't see a Gatekeeper warning on first launch.

2. 2. Choosing a workspace

On first launch, the Onboarding screen appears. Selecting 'Use ~/Atelie' creates a new workspace directly under your home directory. 'Choose another folder' lets you pick any location — an existing Markdown folder, a folder inside iCloud Drive, etc. The workspace will contain projects/, attachments/, and .atelie/ (SQLite cache). You can change the workspace later from Settings → Vault.

2. Choosing a workspace
Tip

Your workspace is ~/Atelie. You can browse its contents directly in Finder anytime.

3. 3. Creating your first note

Click the '+' button in the sidebar, pick a project, and create a new task or note. The frontmatter (id, status, created, etc.) is filled in automatically. The body uses standard Markdown (headings, lists, code blocks, images, etc.). You can also use the slash menu (type `/` to see a list) to insert blocks.

---
id: t-001
project: atelie-dev
title: My first note
status: todo
priority: med
due: 2026-05-30
tags: [idea]
---

Write your note body here in Markdown.
Tip

The frontmatter id is a stable reference — rename the file and your links still hold.

4. 4. Projects and tasks

A project is a container for tasks. When creating a project you can define custom statuses (e.g., todo / doing / review / done). Tasks support status, priority, due date, and estimate. Dragging a card across columns in Kanban view updates the status and automatically writes back to the frontmatter.

4. Projects and tasks
Tip

Drag a card on the board and the status writes itself back into the frontmatter.

7. 7. Backing up with git (optional)

Every Atelie note is a plain Markdown file. The app itself doesn't sync, but your workspace (~/Atelie) is just a folder, so you can version and back it up with the git you already know. Run cd ~/Atelie && git init, then git add -A && git commit. Push to a remote like GitHub and you can manually sync to another Mac. It isn't cloud sync — it's a backup where you stay in control.

cd ~/Atelie
git init
git add -A
git commit -m "snapshot"
Tip

Run cd ~/Atelie && git init to start versioning with the commands you already know.

8. 8. Troubleshooting

・ "A warning appears and double-click does not open the app": This should not normally happen. If it does, notarization may be corrupted — please contact support. ・ "My file edit doesn't show up in the app": File watching has a few seconds of delay. If it still doesn't appear, try Settings → Vault → 'Rebuild index'. ・ Log files are written to ~/Library/Logs/Atelie/atelie.log.YYYY-MM-DD. Attaching this to a support email makes diagnosis much faster.

Tip

Logs are written daily to ~/Library/Logs/Atelie/. Attaching them speeds up support.