Documentation Index Fetch the complete documentation index at: https://docs.neterial.cloud/llms.txt
Use this file to discover all available pages before exploring further.
Show TL;DR - all commands
curl -sSL https://get.neterial.cloud/cli.sh | bash
neterial auth login
neterial ssh-key add --auto-detect
neterial provider init hcloud # or: neterial provider init aws
neterial infra create vm --cloud hcloud # or: --cloud aws
# In your app repo:
git remote add neterial git@git. < hostnam e > .neterial.app: < ap p > .git
git push neterial main
1. Install CLI
curl -sSL https://get.neterial.cloud/cli.sh | bash
2. Log in
New users can create an account during login.
3. Add your SSH key
neterial ssh-key add --auto-detect
4. Connect your cloud
Verify that the cloud is connected:
5. Create a VM
neterial infra create vm --cloud hcloud
neterial infra create vm --cloud aws
Example output:
Creating VM "default" in hel1 on hcloud...
Waiting for the VM to be ready.............
VM is ready (k3s installed)
Access your cluster:
kubectl --context default-neterial-admin@default-neterial cluster-info
Deploy apps with git push:
git remote add neterial git@git.01kfybgvn6ewjrgsrzkseqcgpt.neterial.app:<your-app>.git
git push neterial main
6. Deploy your app
Go to your app’s repository.
Show Don't have a repo? Create a sample app
npx create-next-app@latest my-app
cd my-app
Copy the git remote command from the output and run it in your repository:
git remote add neterial git@git. < your-hostnam e > .neterial.app: < your-ap p > .git
Push to deploy:
You will see the URL in the output:
remote: Deployed! Application URL:
remote: -------------------------------------------------------
remote: https://hello.01kfxd43vxe0ran5xhwjtd4m5n.neterial.app
remote: -------------------------------------------------------
Open the URL to see your app running.
Next step
For deploying with Kubernetes manifests instead of git push, see Deploy App to k8s .