Skip to content
/ deploy Public

A tool for deploying applications on the Akash Network

License

Notifications You must be signed in to change notification settings

ovrclk/deploy

Repository files navigation

Deploy

NOTE: 🐉 WIP 🐉 Please 🐉 Open 🐉 Issues 🐉 You 🐉 Find 🐉

deploy is a command line client for deploying applications on the Akash Network. It also contains a full demo environment to help users develop their SDL files for deployment on the live network (test or otherwise).

Requirements

  • Go 1.14+ installed and $GOPATH + $GOBIN setup

Creating your first Akash application

The following commands will deploy your first akash application on the testnet:

# First, if you haven't, install the `deploy` binary
make install

# Next, generate the configuration file for the testnet
deploy init testnet-v4 http://rpc.akashtest.net:26657

# Create a private key for your deployments...
deploy key-add

# ...get the address for the key you just created...
deploy address

# ...and take it to the faucet: https://akash.vitwit.com/faucet
# when you have tokens, you will see them using the balance command
deploy balance

# Once you have some testnet `akash` you can start deploying apps!
# Try the `sample.yaml` file in the root of the repo...
deploy create sample.yaml