返回博客
此文章暂无中文版本,正在显示英文版本。
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 install

2. Environment Setup

Copy the .env.example file:

cp .env.example .env.local

Fill in your environment variables:

DATABASE_URL=postgresql://...
BETTER_AUTH_SECRET=your-secret

3. Database Setup

Push your database schema:

npm run db:push

4. Run Development Server

npm run dev

Open 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! 🚀