← Dashboard
BWM-100 Assembly Guide

Get Your App Live

Step-by-step. No dev experience needed. 45–90 minutes start to finish.

0%
0/24 steps

Create a free GitHub account and push your Manifest build to your own private repo. You own this forever.

Go to github.com → click Sign up → use your personal email → choose the free plan. GitHub is free forever for private repos.
Already have GitHub? Skip this — go straight to step 2.
Once logged in: click the + in the top-right → New repository → set visibility to Private → click Create repository. Copy the repo URL shown on the next screen.
Name it the same as your app — lowercase, hyphens instead of spaces. Example: my-saas-app
Git is the tool that sends your code from your computer to GitHub.
terminal
# Mac:
brew install git

# Windows:
# Download from https://git-scm.com/download/win and run the installer

# Verify:
git --version
If you see a version number, Git is installed. Skip this step.
Find the .zip file from Manifest. Double-click it to unzip. You'll get a folder — remember where it is.
The ZIP was emailed to you and is also in your Manifest dashboard under Downloads.
Run these commands in order. Your code will be live in your GitHub repo.
terminal
# Open your terminal (Mac: Spotlight → Terminal, Windows: search "cmd")
# Navigate to your unzipped folder:
cd /path/to/your-unzipped-folder

# Initialize and push:
git init
git add .
git commit -m "Initial Manifest build"
git branch -M main
git remote add origin https://github.com/YOUR_USERNAME/YOUR_REPO_NAME.git
git push -u origin main
Replace YOUR_USERNAME and YOUR_REPO_NAME with yours. GitHub will ask for your username + password (use a Personal Access Token if prompted — Settings → Developer settings → Personal access tokens → Generate new).
Go to github.com/YOUR_USERNAME/YOUR_REPO_NAME in your browser. You should see all your files. If you see them — this tab is complete. Move to Railway Deploy.

Stuck somewhere not covered here?

Email [email protected] — we respond within 24h.