Quick Start Guide
Welcome to CloudNodeStore! This guide will help you get started with our cloud platform in just a few minutes.
1. Create Your Account
Sign up for a CloudNodeStore account to get started. You'll receive $100 in free credits to explore our services.
2. Install CLI Tool
Our command-line interface makes it easy to manage your infrastructure:
$ curl -fsSL https://cli.cloudnodestore.com/install.sh | bash
$ cloudnode auth login
$ cloudnode auth login
3. Create Your First Instance
Deploy a virtual machine with a single command:
$ cloudnode compute create \
--name my-server \
--type standard-2 \
--image ubuntu-22.04 \
--region us-east-1
--name my-server \
--type standard-2 \
--image ubuntu-22.04 \
--region us-east-1
4. Connect to Your Instance
SSH into your new server:
$ cloudnode compute ssh my-server
5. Configure Storage
Create a storage bucket for your files:
$ cloudnode storage create-bucket my-bucket
$ cloudnode storage upload ./file.txt my-bucket/
$ cloudnode storage upload ./file.txt my-bucket/
API Reference
All our services are accessible via REST API. Here's an example request:
curl -X GET "https://api.cloudnodestore.com/v1/instances" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Need Help?
If you have any questions, check out our support page or join our community Discord server.