https://github.com/bpmct/node-dev
https://github.com/bpmct/node-dev
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/bpmct/node-dev
- Owner: bpmct
- Created: 2021-03-04T18:17:21.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-04T18:20:32.000Z (over 5 years ago)
- Last Synced: 2025-02-07T12:49:03.842Z (over 1 year ago)
- Language: Shell
- Size: 12.3 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# deploy-code-server 🚀
A collection of one-click buttons and scripts for deploying code-server to various cloud hosting platforms. The fastest way to get a code-server environment! ☁️
| | Name | Type | Lowest-Price Plan | Deploy |
| --------------------------------------------------------------------------------------------------------------- | ----------------- | ------------- | ------------------------------------- | -------------------------------------------------------- |
| [](https://digitalocean.com) | DigitalOcean | VM | $5/mo, 1 CPU, 1 GB RAM | [see guide](guides/digitalocean.md) |
| [](https://vultr.com) | Vultr | VM | $3.50/mo, 1 CPU, 512 MB RAM | coming soon |
| [](https://linode.com) | Linode | VM | $5/mo, 1 CPU, 1 GB RAM | [see guide](guides/linode.md) |
| [](https://railway.aop) | Railway | Container | Free, specs unknown, but very fast 🚀 | [see guide](guides/railway.md) |
| [](https://heroku.com) | Heroku | Container | Free, 1 CPU, 512 MB RAM | [see guide](guides/heroku.md) |
| [](https://azure.microsoft.com/en-us/services/app-service/) | Azure App Service | Container | Free, 1 CPU, 1 GB RAM | [see guide](https://github.com/bencdr/code-server-azure) |
| [](https://coder.com/docs) | Coder | Dev Workspace | For developer teams 👨🏼💻 | [read the docs](https://coder.com/docs) |
---
## Coding on a VM vs. a Container
- VMs are deployed once, and then can be modified to install new software
- You need to save "snapshots" to use your latest images
- Storage is always persistent, and you can usually add extra volumes
- VMs can support many workloads, such as running Docker or Kubernetes clusters
- [👀 Docs for the VM install script](deploy-vm/)
- Deployed containers do not persist, and are often rebuilt
- Containers can shut down when you are not using them, saving you money
- All software and dependencies need to be defined in the `Dockerfile` or install script so they aren't destroyed on a rebuild. This is great if you want to have a new, clean environment every time you code
- Storage may not be redundant. You may have to use [rclone](https://rclone.org/) to store your filesystem on a cloud service, for info:
- [📄 Docs for code-server-deploy-container](deploy-container/)