This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "⚙️ Installing code-server..." | |
| # Install code-server silently | |
| curl -fsSL https://code-server.dev/install.sh | sh | |
| echo "⚙️ Downloading Cloudflare daemon..." | |
| # Download the standalone cloudflared binary (no sudo/apt required) | |
| curl -sL --output cloudflared https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 | |
| chmod +x cloudflared |