Getting Started Tutorial
Welcome to ShipNowKit! This tutorial will guide you through building your first SaaS application from scratch.
Prerequisites
Before you begin, make sure your development environment has:
- Node.js 18+
- npm or yarn
- Git
Step 1: Clone the Project
git clone https://github.com/shipnowkit/shipnowkit.git
cd shipnowkitStep 2: Install Dependencies
npm installStep 3: Configure Environment Variables
Copy the .env.example file and rename it to .env:
cp .env.example .envStep 4: Start the Development Server
npm run devNow you can visit http://localhost:3000 in your browser to see your application!
Next Steps
- Configure authentication system
- Set up payment integration
- Customize theme and styles