Installation and setup
The following steps will get you started using ZeppelinOS.
Installation
zos
is the command line interface to ZeppelinOS. To install it, go to your terminal and run:
npm install --global zos
If you get an EACCESS
permissions error when installing, please review the npm documentation on preventing permissions errors.
Setting up your application
Initialize your zos
application with:
mkdir my-app && cd my-app
npm init
zos init my-app
This creates a zos.json
file, which contains all the information about your application. For details about this file format, please see the advanced topics section.
You are now ready to start building your upgradable application.