How to set up Formbricks on a Mac machine
git clone https://github.com/formbricks/formbricks && cd formbricks
nvm install && nvm use
pnpm install
.env
cp .env.example .env
sed -i '' '/^ENCRYPTION_KEY=/s|.*|ENCRYPTION_KEY='$(openssl rand -hex 32)'|' .env sed -i '' '/^NEXTAUTH_SECRET=/s|.*|NEXTAUTH_SECRET='$(openssl rand -hex 32)'|' .env sed -i '' '/^CRON_SECRET=/s|.*|CRON_SECRET='$(openssl rand -hex 32)'|' .env
pnpm go
Was this page helpful?