-
I'm setting up a local dev env following this guide and I got it working but I wanted to clarify. you're supposed to run I also was following along and I used I pasted that into DATA_ENCRYPTION_PASSPHRASE, What I ended up doing was truncating the passphrase until it was 32 characters long and |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You should only need to run install at the root -- as this is a workspace, it'll install everything :) Ah, for the keys that need a 32 char key, the command should be |
Beta Was this translation helpful? Give feedback.
-
Ah, interesting, I think I had an issue where it was missing babel or something in the website folder, so I went an ran pnpm install in there. I might go back and see if it was a mistake on my end. Cool, in .env.example the example above |
Beta Was this translation helpful? Give feedback.
You should only need to run install at the root -- as this is a workspace, it'll install everything :)
Ah, for the keys that need a 32 char key, the command should be
openssl rand -base64 24
. What you did is fine though.