To use the Codius command-line interface (CLI), you need a recent version of Linux.
For the example commands below, we assume you're on Ubuntu 14.04 or later. But most up-to-date Linux distributions should work. We definitely recommend being on the latest stable release though.
If you're on Windows/Mac try installing Vagrant and then run:
vagrant init ubuntu/trusty32
vagrant up
vagrant sshCongratulations, you are running Ubuntu/Linux! Proceed.
On 64-bit systems you need to have the 32-bit versions of libc, libstdc++ and libseccomp installed.
On Ubuntu, run:
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6-i386 lib32stdc++6 libseccomp2:i386Install git by running:
sudo apt-get install gitNext, you need a recent version of Node.js. All versions of 0.10.x or higher should work.
On Ubuntu, you can install Node.js simply by:
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs
sudo ln -s /usr/bin/nodejs /usr/local/bin/nodeTo install Codius command line tools, run:
sudo npm install -g codiusNow let's verify everything installed ok.
codius selftestLet's check out an application and run it!
git clone https://github.com/codius/example-helloworld codius-example-helloworld
cd codius-example-helloworld
codius runYou should see something like:
Codius applications can expose HTTP APIs, check it out:
git clone https://github.com/codius/example-webserver codius-example-webserver
cd codius-example-webserver
codius serveYou should see an message like Localhost server listening on port: 8000 meaning your application is now running at localhost:8000. Go ahead and open it in a browser!
You can upload contracts to Codius hosts.
NOTE: Before attempting to upload an application, it is important to first test it with Node and then with Codius using:
codius runIf your application runs with issues, you are ready to upload!
First, set yourself up with a local Codius host and run:
codius-host startNow you can go back to the codius-example-webserver folder from the previous example and run codius upload:
cd codius-example-webserver
codius upload --hosts https://localhost:2633Now your application is running on the Codius host! Go ahead and open its URL in the browser and watch its output in the host's log!
To upload your application to one or more remote Codius hosts, specify the hosts using --hosts. Multiple hosts can be listed using commas without spaces:
codius upload --hosts https://remote-host-1.com,https://remote-host-2.comIf your Codius host is using a self-signed SSL certificate (potentially for development) you will need to
enable tls connections with self-signed certs by setting the CODIUS_UNAUTHORIZED_SSL environment variable to true
CODIUS_UNAUTHORIZED_SSL=true codius upload --hosts https://self-signed-host.com