Tier 1 · Quick start
Get the app running on your own computer in just a couple of minutes, perfect for one person or a team on the same network. There's nothing to install and no files to edit: Map Blueprint is a single program you download and double-click, like any other app.
MapBlueprint folder inside your Documents). Inside you'll find one program for each kind of computer, use the one that matches yours (Windows, Mac, or Linux) and ignore the rest. Want teammates in other places to reach it over the internet? Use the cloud hosting guide instead.
Double-click MapBlueprint.exe. A small black console window opens, that's the server doing its job, so just leave it open. Your browser then opens to the app automatically.
The first time, Windows may show a blue "Windows protected your PC" box because the app isn't from a big-name publisher. Click More info → Run anyway. This is normal for small indie apps and is safe, the app isn't code-signed, that's all.
On the very first run you'll see a quick Setup screen. Choose a password your team will use to log in (or leave it blank if this is a private computer only you use) and click Save, that's the whole setup.
You'll land on your Maps dashboard. Create a map and share its link with teammates on your network. To stop the app later, close the console window; to start it again, double-click the program.
MapBlueprint-mac runs on every Mac, both Apple Silicon (M1/M2/M3/M4) and older Intel Macs. On Apple Silicon, macOS may offer to install Rosetta the first time, click Install (it's a one-click Apple component that lets the app run).
macOS blocks apps that didn't come from its App Store the first time you open one. To get past this once: right-click (or hold Control and click) the program → Open → Open again in the dialog. After this first time you can just double-click it like any app.
Comfortable with the Terminal (Mac's text-command app)? You can do the same thing by running the three lines below from the folder that holds the program. The first clears the "downloaded from the internet" flag, the second marks the file as runnable, and the third starts it:
xattr -d com.apple.quarantine ./MapBlueprint-mac
chmod +x ./MapBlueprint-mac
./MapBlueprint-mac
Your browser opens to the first-run Setup screen. Pick a password (or leave it blank) and save, you're mapping. A settings file (config.json) and your maps are created right next to the program.
Open a terminal in the folder that holds the program. The first command marks the file as runnable; the second starts it. Your browser then opens to the Setup screen.
chmod +x ./map-blueprint-linux
./map-blueprint-linux
Want an always-on Linux server that remote teammates can reach? Follow the cloud hosting guide instead.
Open the app, go to your Maps page, and click Settings. From there you can change the name, colours, logo, password, port and team size, no files to edit. Look-and-feel changes appear on the next refresh; password and port changes take effect after you restart the program.
data/ folder, right next to the program.data/ folder somewhere safe..json files from the dashboard, handy for moving maps between computers.data/ and config.json along with it.
To let teammates on the same Wi-Fi or office network open your maps, you first tell the app to accept connections from other computers, by default it only listens to your own. Open Settings, set the Bind address to 0.0.0.0 (in plain English: "accept connections from any computer on my network"), and restart the program. Teammates then reach you at http://YOUR-COMPUTER-IP:8080.
To find your computer's local IP address (a number like 192.168.1.42), run one of these in a terminal:
ipconfig, look for the line "IPv4 Address".ipconfig getifaddr en0hostname -I
Want people outside your network to reach the app while it still runs on your own computer? A tunnel is a small helper that gives your app a public https://… web address, with no router changes, encrypted, and free. The easiest is a Cloudflare Tunnel.
cloudflaredcloudflared is Cloudflare's free tunnel tool. You install it once:
winget install --id Cloudflare.cloudflared (or download cloudflared.exe from Cloudflare's downloads page).brew install cloudflared (needs Homebrew).cloudflared binary from their releases page.Run the app as usual and leave it open, it's listening on http://localhost:8080 (localhost just means "this computer"). You can leave the Bind address at its default; the tunnel reaches the app right here on your machine.
Open a new terminal or PowerShell window (keep the app running in its own window) and run:
cloudflared tunnel --url http://localhost:8080
After a moment it prints a public address like https://random-words.trycloudflare.com. Share that link, teammates open it from anywhere, sign in with your password, and edit live with you. Keep both windows open (the app and the tunnel); closing the tunnel window stops the sharing.
This quick tunnel needs no Cloudflare account, but the address changes each time you restart it. For a permanent address on your own domain, create a free Cloudflare account and set up a named tunnel, the cloud hosting guide shows the same cloudflared setup, and it works the same way pointing at your local PC. For an instance that's always up, even when your computer is off, run it on a small cloud server.