Run Profiles
Run profiles let you develop locally while connected to remote infrastructure via tunnels and vault secrets.
Create a Profile
Section titled “Create a Profile”slipp run dev \ --cmd "npm run dev" \ --tunnel-out 5173:app.example.com@myserver \ --vault myprojectThis creates a profile named dev that:
- Loads secrets from the
myprojectvault - Sets up a reverse tunnel (local:5173 → remote)
- Runs
npm run dev
Execute a Profile
Section titled “Execute a Profile”slipp run devList Profiles
Section titled “List Profiles”slipp runs listRemove a Profile
Section titled “Remove a Profile”slipp runs remove devTunnel Types
Section titled “Tunnel Types”tunnel-out (Reverse Tunnel)
Section titled “tunnel-out (Reverse Tunnel)”Expose your local dev server to the remote infrastructure:
--tunnel-out 5173:app.example.com@myserverTraffic flow: https://app.example.com → tunnel → localhost:5173
tunnel-in (Forward Tunnel)
Section titled “tunnel-in (Forward Tunnel)”Pull a remote service to your local machine:
--tunnel-in postgres:5432@myserverTraffic flow: localhost:5432 → tunnel → remote Postgres