Ok, so its not noob proof, you were just lucky you already got it
If I dont have follow the official tuturail I dont know it needs to install before bolt.diy
I have installed before on Cloudflare but in my experience I got a few non responsive AI or get errors(dont remember now witch are)and doesnt modify the project.
The issue here is no access. You’d need to use sudo to grant access or just run as sudo
(I’m usually lazy and just run as sudo myself). But instead of having to put “sudo” for every line, I generally just login to root with sudo su
.
Then you could just run the normal commands:
sudo su
(put in credentials)
git clone https://github.com/stackblitz-labs/bolt.diy
cd bolt.diy
npm install -g pnpm
pnpm install
pnpm run dev
Note: You don’t run into this with docker because the install script takes care of it for you, so that’s an option as well. But if you get used to the Linux/Mac terminal, it’s basically the same steps as on Windows.
Hope that helps!
Thank you so much, super fast doing that video