docker compose build --no-cachedocker compose --env-file .env.spur-managed upYou can use openssl to generate a cookie secret:
openssl rand -base64 32If you are using a spur managed environment, you will need to create a .env.spur-managed file in the root of the project. This file should contain the following environment variables:
DECRYPTION_METHOD=spur-managed
SITE_TOKEN=
VERIFY_TOKEN=
COOKIE_SECRET=For a user managed environment, you will need to create a .env file in the root of the project. This file should contain the following environment variables:
DECRYPTION_METHOD=spur-managed
SITE_TOKEN=
PRIVATE_KEY=
COOKIE_SECRET=If you are running the project locally, you will also need to include a variable to disable the IP checks:
NODE_ENV=development
LOCAL=truedocker compose downNavigate to http://localhost:3000 in your browser.