Your First Post
This guide takes you from a fresh Postlane install to your first sent post. Every step is shown exactly as you will perform it. No prior Postlane knowledge assumed.
What you need before starting
- A macOS, Windows, or Linux machine
- Node.js 22 or later installed (
node --versionto check) - A Git repository with at least one commit
If you do not have Node.js installed, download it from nodejs.org and install the LTS release.
Step 1 — Download and install the desktop app
Go to postlane.dev and click Download.
macOS: Open the downloaded .dmg, drag Postlane to your Applications folder, and open it from there.
If you see "Postlane can't be opened because Apple cannot check it for malicious software," do the following:
- Open System Settings (macOS 13 and later) or System Preferences (macOS 12)
- Go to Privacy & Security
- Scroll down to the Security section and click Open Anyway next to the Postlane message
- Click Open in the confirmation dialog
Windows: Run the downloaded .exe installer. If Windows SmartScreen shows a warning, click More info, then Run anyway.
Linux: Download the .AppImage, make it executable, and run it:
chmod +x Postlane_*.AppImage
./Postlane_*.AppImage
Step 2 — Sign in
When Postlane opens, the onboarding wizard appears. Click Get started, then Sign in with GitHub (or GitLab or Google — whichever you use).
Your browser opens. Sign in and authorise Postlane. The browser shows a confirmation message and automatically returns to the app.
You will see "Signed in" in the wizard. Click Next.
Step 3 — Name your workspace
A workspace groups your repositories under one set of scheduling credentials and a voice guide. Give it a name — your name, your company name, or a project name works fine. Click Next.
Step 4 — Connect a scheduling provider (or skip for now)
Postlane needs a scheduling provider to queue posts for a future time. If you want to send posts immediately, click Set up later and continue.
To connect Zernio (recommended -- supports X, LinkedIn, Bluesky, and more):
- Select Zernio from the provider list
- Enter your Zernio API key (find it at zernio.io → Settings → API)
- Click Test connection — you will see a green checkmark
- Click Next
See Scheduling providers for all supported providers.
Step 5 — Add your repository
Click Add repo and select a folder on your machine. Postlane checks that it contains a .git directory.
If you see "Run npx @postlane/cli init in this directory first," open a terminal, navigate to your repo, and run:
npx @postlane/cli init
This creates a .postlane/ directory with a default configuration. Commit it:
git add .postlane
git commit -m "Add Postlane configuration"
Then click Back and select the repo again.