Conversation
| Once this is done, you can run the following command to start the development environment: | ||
|
|
||
| ```sh | ||
| make docker-start |
There was a problem hiding this comment.
I couldn't start everything without setting these params first:
FRONTEND_HTTP_HOST=true
FRONTEND_HTTP_PORT=3000
FRONTEND_HMR_PORT=3001
make docker-start output:
docker compose -p atomic-crm --env-file .env.development --env-file ./docker/.env -f ./docker/docker-compose.yml -f ./docker/docker-compose-atomic.yml up
WARN[0000] The "FRONTEND_HMR_PORT" variable is not set. Defaulting to a blank string.
WARN[0000] The "FRONTEND_HTTP_HOST" variable is not set. Defaulting to a blank string.
WARN[0000] The "FRONTEND_HTTP_PORT" variable is not set. Defaulting to a blank string.
WARN[0000] The "FRONTEND_HTTP_PORT" variable is not set. Defaulting to a blank string.
WARN[0000] The "FRONTEND_HTTP_PORT" variable is not set. Defaulting to a blank string.
WARN[0000] The "FRONTEND_HMR_PORT" variable is not set. Defaulting to a blank string.
WARN[0000] The "FRONTEND_HMR_PORT" variable is not set. Defaulting to a blank string.
invalid proto:
make: *** [makefile:102: docker-start] Error 1
There was a problem hiding this comment.
Yes, that's explained in the self hosting documentation
| VITE_SUPABASE_URL=http://localhost:8000 | ||
| ``` | ||
|
|
||
| Replace the port of the `VITE_SUPABASE_URL` variable with the one you choose in the Supabase `./docker/.env` file. |
There was a problem hiding this comment.
No mention of updating VITE_SUPABASE_ANON_KEY to the ANON_KEY from docker/.env.
With the demo key, signup returns 401 “Invalid authentication credentials,” blocking the first user.
Problem
Fixes #89
We want to ease self hosting.
Solution
How To Test
Follow the Self Hosting documentation added in this PR
Additional Checks
Also, please make sure to read the contributing guidelines.