Make sure you have these installed:
You have three ways to get a copy:
git clone https://github.com/your-username/shipahead-template.git your-project-name
git clone https://github.com/Tom-Han-Org/shipahead-template.git your-project-name
cd your-project-name
Run this to install everything the project needs:
npm install
mv .env.example .env
.env in a text editor and fill in your values.shared/config.ts.Start your app locally:
npm run dev
Visit http://localhost:3000 – your app is live! 🎉
Keep your project in sync with the latest ShipAhead changes:
git remote add upstream https://github.com/Tom-Han-Org/shipahead-template.git
git fetch upstream
git merge upstream/main
Tip: If there are merge conflicts, review and resolve them manually.