tutorial
getting-started
开始使用 VibeAny
学习如何设置和自定义你的 VibeAny SaaS 启动模板
2024年1月15日
•作者:VibeAny Team•5 分钟阅读
Getting Started with VibeAny
Welcome to VibeAny! This guide will help you get your SaaS up and running in no time.
What is VibeAny?
VibeAny is a production-ready Next.js SaaS boilerplate that includes everything you need to launch your product quickly:
- 🔐 Authentication - Email/password and OAuth (Google, GitHub)
- 💳 Payments - Integration-ready for subscriptions and one-time payments
- 📊 Dashboard - User dashboard with settings and billing
- 🗄️ Database - PostgreSQL with Drizzle ORM
- 🎨 UI Components - Shadcn/ui with dark mode
- 🌍 i18n - Multi-language support
Quick Start
1. Installation
git clone <your-repo-url>
cd vibeany
npm install2. Environment Setup
Copy the .env.example file:
cp .env.example .env.localFill in your environment variables:
DATABASE_URL=postgresql://...
BETTER_AUTH_SECRET=your-secret3. Database Setup
Push your database schema:
npm run db:push4. Run Development Server
npm run devOpen http://localhost:3000 to see your app!
Next Steps
- Customize the pricing plans in
config/pricing.ts - Update the site configuration in
config/site.ts - Add your own features to the dashboard
- Deploy to Vercel or your preferred platform
Need Help?
Check out our documentation or contact us if you have any questions.
Happy building! 🚀