Andrei Condurachi

Results 18 comments of Andrei Condurachi

Hi Tony, I left a comment in the commit too and I believe I've just fixed this issue. The problem happens when using Panels IPE. If you look into file...

I tried syncing my commit to your repo but it looks like I don't have the right permissions. Here's the code change that I did to solve the issue: function...

I was able to change this line: - io.docksal.virtual-host=ide-${VIRTUAL_HOST},ide-${VIRTUAL_HOST}.* into this: - io.docksal.virtual-host=ide.${VIRTUAL_HOST} in file ~/.docksal/stacks/overrides-ide.yml and it worked, ide.example.com loaded with SSL and the coder interface. I also tried...

Well, my problem was that I already had the VIRTUAL_HOST to example.com and its subdomains, but when I followed the steps to enable IDE, it enabled ide-example.com instead of ide.example.com...

Yeah, that's the first thing I did. I've just ran the following commands in sequence and I still get ide-example.com instead of ide.example.com: 1. fin update 2. set the project's...

Could it be that fin is ignoring somehow the project's IDE overrides?

Would this have anything to do with the fact that the project's IDE settings are ignored? ![Screenshot from 2021-06-25 16-45-32](https://user-images.githubusercontent.com/1694890/123434405-1a3eb680-d5d5-11eb-9c03-17d7c65a520f.png)

Or maybe this: ![Screenshot from 2021-06-25 16-49-17](https://user-images.githubusercontent.com/1694890/123434599-583bda80-d5d5-11eb-9f4a-61cca35a710e.png)

The winning code fix was: ``` # Enable VSCode (Coder) IDE overrides_ide_file="$(get_config_dir_dc)/stacks/overrides-ide.yml" if [[ -f "${overrides_ide_file}" ]] && [[ "$IDE_ENABLED" != "" ]] && [[ "$IDE_ENABLED" != "0" ]]; then...