There are great benefits from using Cloud9, especially with Terraform, it’s super-fast since the connection to AWS API happens internally, I was facing terraform apply took up to 15 minutes on my machine, now when running the same commands on cloud9 it’s only 15 seconds!
The Cloud9 UI is nice, but you can still VScode with all of your extensions with cloud 9, using remote ssh extension.
ssh-keygen -t ed25519
cat ~/.ssh/id_ed25519.pub
[ copy your key]
nano ~/.ssh/config # add the following
Host hl-dev-cloud9
HostName ec2-XX-XXX-XX-XXX.eu-central-1.compute.amazonaws.com
User ec2-user
IdentityFile /Users/mohammed/.ssh/id_ed25519_cloud9
cat >> ~/.ssh/authorized_keys
[ paste your key here]
How to solve "Visual Studio Code is unable to watch for file changes in this large workspace" (error ENOSPC)?
When you see this notification, it indicates that the VS Code file watcher is running out of handles because the workspace is large and contains many files. The current limit can be viewed by running:
cat /proc/sys/fs/inotify/max_user_watches
The limit can be increased to its maximum by editing /etc/sysctl.conf
and adding this line to the end of the file:
fs.inotify.max_user_watches=524288
The new value can then be loaded in by running sudo sysctl -p
.