How to disable password in heroku? #3821
-
Is it possible to bypass password in code-server which is deployed in heroku? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Remove |
Beta Was this translation helpful? Give feedback.
-
Hey @PakkiPavan if there is no PASSWORD env var, a random one is created. You will need to set auth: none in config.yaml or launch it with --auth none. In the Dockerfile you can copy a code-server config file OR add the flag in the entrypoint of your repo. Then, re deploy. |
Beta Was this translation helpful? Give feedback.
Hey @PakkiPavan if there is no PASSWORD env var, a random one is created. You will need to set auth: none in config.yaml or launch it with --auth none.
In the Dockerfile you can copy a code-server config file OR add the flag in the entrypoint of your repo. Then, re deploy.