Quick Start (5 Minutes)
Get Fast Forward Dev running in 5 minutes with this hands-on tutorial.
This assumes you’ve already completed the installation and have both servers running.
Open the Home Page
Navigate to http://localhost:3000
You should see:
- Hero section with headline
- Pricing table
- FAQ section
- Footer
Customize the Hero
Open src/components/Hero/Hero.tsx and change:
const description = 'Your custom description here!'
const checkList = ['Feature 1', 'Feature 2', 'Feature 3']Save and see the changes instantly with hot reload.
Test Stripe Checkout
- Click “Get Started” on the pricing card
- You’ll be redirected to Stripe Checkout (test mode)
- Use test card:
4242 4242 4242 4242 - Any future date and CVC
- Complete checkout
Create an Account
After checkout, you’ll be redirected to create an account:
- Enter your name
- Use the same email from checkout
- Create a password
- Click “Sign Up”
You’re now logged in!
Explore the Admin Dashboard
If you’re an admin:
- Go to http://localhost:3000/admin
- See list of users
- Click on a user to see details
- View billing information
What’s Next?
Now that you have it running, customize it:
Common Issues
“Cannot connect to server”
- Make sure the server is running on port 5001
- Check
backendUrlinconfig.ts
“No purchase found”
- Complete Stripe checkout first
- Use the same email for signup
Stripe webhook not working
- Install Stripe CLI
- Run
stripe listen --forward-to localhost:5001/api/stripe/webhook
Last updated on