mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-14 19:38:53 -05:00
2b49dbecd3
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
59 lines
1.3 KiB
Plaintext
59 lines
1.3 KiB
Plaintext
---
|
|
title: Mac
|
|
description: How to set up Formbricks on a Mac machine
|
|
icon: "apple"
|
|
---
|
|
|
|
### Local Machine Setup - Mac
|
|
|
|
<Info>This guide is recommended for advanced users setting up Formbricks on a **Mac** machine.</Info>
|
|
|
|
**Requirements:**
|
|
|
|
- Node.JS (v20 recommended)
|
|
- [pnpm](https://pnpm.io/)
|
|
- [Docker](https://www.docker.com/)
|
|
|
|
**Steps:**
|
|
|
|
1. **Clone the project & change directory:**
|
|
|
|
```bash
|
|
git clone https://github.com/formbricks/formbricks && cd formbricks
|
|
```
|
|
|
|
2. **Setup NodeJS with nvm:**
|
|
|
|
```bash
|
|
nvm install && nvm use
|
|
```
|
|
|
|
3. **Install NodeJS packages with pnpm:**
|
|
|
|
```bash
|
|
pnpm install
|
|
```
|
|
|
|
4. **Create a development `.env` file and generate the required secrets:**
|
|
|
|
```bash
|
|
pnpm dev:setup
|
|
```
|
|
|
|
5. **Generate the Next.js AGENTS.md file (optional, for AI-assisted development):**
|
|
|
|
This step generates an `AGENTS.md` file at the repository root that provides Next.js documentation context for AI coding assistants (e.g. Cursor, GitHub Copilot). It runs `npx @next/codemod agents-md` under the hood. Re-run it whenever you upgrade Next.js.
|
|
|
|
```bash
|
|
pnpm agents:update
|
|
```
|
|
|
|
6. **Start the development setup:**
|
|
```bash
|
|
pnpm go
|
|
```
|
|
|
|
Visit [http://localhost:3000](http://localhost:3000) to access Formbricks.
|
|
|
|
<Tip>Ensure you create a new account at first login.</Tip>
|