Quick Start
Get started with VibeAny quickly
VibeAny Guide
VibeAny is a modern AI scaffold built on Next.js. It ships user auth, AI integrations, payments, and an admin dashboard so you can ship ideas faster.
Prerequisites (prepare these first)
1) Node.js
A runtime for running JavaScript on your computer. If not installed, download the LTS version from the official site.
node --version2) Git
A version control tool for tracking history and collaborating. If not installed, get it from the official site.
git --version3) Package manager
Used to install dependencies. We recommend bu n, but npm or pnpm or yarn also work.
# Install bun via npm if you haven't
npm install -g bun
# Check version
bun --versionGet started (3 steps)
1) Clone the repository
Download the code locally. You can rename vibe-any to any folder name.
Prefer not to use Git? Download the ZIP directly:
git clone https://github.com/待修改/vibe-any.git
cd vibe-any3) Set environment variables
.env stores the "keys" your app needs (database URL, OAuth keys, payment secrets). Copy the example file and fill in values.
cp .env.example .envTip: Common variables include
DATABASE_URL, OAuth (GitHub/Google) configs, and payment secrets. See the Environment Variables doc for details.