Deploy Python, Node.js, og statiske websteder til din VPS med en kommando. Ingen Docker. Ingen komplekse configs. Bare vps deploy.
Install the CLI, login, and deploy
pip install vpsdotorg
cd my-project
vps link
vps deploy
Define your app in a simple 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 deployThe platform handles everything automatically
Installs Python (pyenv) or Node.js (nvm) with your specified version
Clones or pulls your code from the Git repository
Runs your build commands (pip install, npm install, etc.)
Opsætter Supervisor, en Nginx omvendt proxy og et gratis Lad os kryptere SSL- certifikat, når du indstiller et domæne
No DevOps knowledge required
Automatisk Lad os kryptere SSL for det domæne du konfigurerer. HTTPS ud af boksen.
Supervisor keeps your app running. Automatic restarts on crashes.
Automatically configured with gzip, WebSocket support, and static file serving.
Securely manage secrets with vps env set KEY=VALUE.
Track every deployment with logs, status, and duration via vps deployments.
Quick access to your server with vps ssh. Full root control.
vps loginvps linkvps deployvps deploymentsvps logsvps env set K=Vvps env listvps sshNej. VPS Deploy kører dine apps indbygget på serveren ved hjælp af system-niveau værktøjer (pyenv, nvm, Supervisor, Nginx). Ingen containere, ingen Docker dæmon, ingen overhead.
Currently: Python (Django, Flask, FastAPI, etc.), Node.js (Express, Next.js, etc.), and static sites (React, Vue, HTML). More runtimes coming soon.
When you run vps deploy, CLI sender din config til VPS.org API. platformen derefter SSHes ind i din server og udfører den fulde pipeline: installere runtime, synkronisere kode fra git, køre bygge kommandoer, konfigurere tilsynsførende og Nginx, oprette SSL, og køre et helbredstjek.
No. The platform installs everything it needs automatically via SSH. Your VPS just needs a base OS (Ubuntu, Debian, etc.) and SSH access. No agent required.
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 er inkluderet gratis med alle VPS.org-servere. Du betaler kun for din VPS-plan starter på $2.50 / måned. Ingen yderligere implementeringsgebyrer.
pip install vpsdotorg
Planer starter ved $2.50 / måned