LinkedIn Review — run it locally

The app runs only on your Mac. This page is just the cheat-sheet.

Two ways to start it — do either one
Option A · one click

Open the launcher

In Finder, double-click start-app.command in the repo — or run the line below in Terminal. Either one installs (first run), starts the server, and opens the browser. That’s it.

open ~/Documents/GitHub/personal/linkedin-review/start-app.command
or
Option B · terminal

Run it by hand

Paste this once. npm install is only needed the first time. Then open localhost:3000; stop with Ctrl-C.

cd ~/Documents/GitHub/personal/linkedin-review npm install # first run only npm run dev
Optional · faster production build

Instead of the dev server, build once and serve the optimized app.

cd ~/Documents/GitHub/personal/linkedin-review npm run build && npm start

This app only reads/writes your LinkedIn post-tracker Excel. It never posts to LinkedIn, never calls an LLM, and never runs in the cloud — only this cheat-sheet does.