Clone the Repository

After purchasing SaasKitFy, you'll receive access to the private Git repository.

Clone

git clone https://github.com/your-org/saaskitfy.git my-saas
cd my-saas

Project Structure

my-saas/
├── backend/          # Laravel API (PHP)
├── frontend/         # React SPA (TypeScript)
├── marketing/        # Marketing site (plain PHP)
├── docs/             # Documentation (Markdown)
├── docker-compose.yml
└── CLAUDE.md         # AI assistant instructions

Each directory is an independent application. You can deploy them to different servers, use different CI/CD pipelines, and scale them independently.

Remove Git History (Optional)

If you want a clean start without the starter kit's commit history:

rm -rf .git
git init
git add .
git commit -m "Initial commit from SaasKitFy"