SaaS
Connect any database, container or cloud provider in 2 minutes.
If your company already uses Runops, head over to the User Guides
Web Application
- Head over to https://use.runops.io
- Login using your Google account
- Create a new connection with type shell
- Run a test script:
echo 123
Command-line
Install & signup
Running this in the terminal will install Runops and setup your
account.
plain textnpm install -g runops runops signup
Create a Connection
A Runops Connection is the resource where we run scripts. Let’s
create a simple python Connection:
plain textrunops targets create --name 'my-first-target' --type 'python'
Run Your First Task
Now we can create and run our first Task with a python script.
plain textrunops tasks create \ -t 'my-first-target' \ -s 'print("Hello from Runops!")'
🎉 Great! You just executed your first Runops task.
Now let’s run your first real-world Task.
Add Configs to Connections
To make Connections useful we need to add more configurations.
Configs enable Tasks to access your real Connections, like databases,
AWS Accounts, and more.
Next steps: