部署 Python 、 Node.js 和静态站点, 请在秒内到您的 VPS 。 没有 Docker, 没有复杂的配置 。 vps deploy.
安装 CLI、登录和部署
pip install vpsdotorg
cd my-project
vps link
vps deploy
简单定义您的应用程序 vps.yaml
name: my-django-app type: python version: "3.12" build: - pip install -r requirements.txt start: gunicorn app.wsgi --bind 127.0.0.1:8000 port: 8000 domain: myapp.com git_repo: https://github.com/user/repo.git
name: my-express-api type: node version: "20" build: - npm install start: node server.js port: 3000 domain: api.mysite.com git_repo: https://github.com/user/repo.git
name: my-website type: static build: - npm run build domain: example.com git_repo: https://github.com/user/repo.git
vps deploy平台自动处理一切
用您指定的版本安装 Python( pyenv) 或 node.js (nvm)
克隆或从 Git 仓库提取您的代码
运行您的构建命令( pip 安装、 npm 安装等)
设置主管, Nginx 反向代理, 并通过 Let's Entrease 建立自由的 SSL
不需要发展操作系统知识
让我们自动加密每个域的 SSL 。 HTTPS 退出框中 。
主管保持您的应用程序运行。 崩溃时自动重新启动 。 @ info: whatsthis
自动配置 gzip 、 WebSocket 支持和静态文件服务 。
安全管理秘密 vps env set KEY=VALUE.
以日志、状态和持续时间通过 vps deployments.
快速访问您的服务器 vps ssh. 完全根控制。
vps loginvps linkvps deployvps deploymentsvps logsvps env set K=Vvps env listvps sshVPS 部署系统使用系统工具( Pyenv、 nvm、 督导、 Nginx)在服务器上操作您的应用程序。 没有容器、 没有 Docker 守护程序、 没有间接费用 。
目前:Python(Django、Flask、FastAPI等)、Node.js(Express、Next.js等)和静态站点(React、Vue、HTML)。
当你逃跑时 vps deploy, CLI 发送您的配置到 VPS.org API 。 平台然后将 SSHES 发送到服务器中, 并执行整个管道 : 安装运行时间、 从 git 同步代码、 运行构建命令、 配置主管和 Nginx 、 设置 SSL 并运行健康检查 。
不,平台通过SSH自动安装所需的一切。您的 VPS只需要一个基础OS( Ubuntu, Debian 等) 和SSH 访问。 不需要代理 。
No. Your code is pulled directly from your Git repository to your VPS. VPS.org only stores deployment configuration and logs. Your code lives on your server and your Git provider.
VPS Deploy is included free with all VPS.org servers. You only pay for your VPS plan starting at $2.50/month. No additional deployment fees.