DownloadThe General Extension Development workflow After you have barge installed, are logged into a Skyport account, and have generated your keys, you can begin to develop your own Airship extensions. The general workflow goes like this: - Initialize your new extension.
- Write your code.
- Build the extension.
- Sign the extension.
- Release the extension.
Creating a Motif barge motif # ...Then follow the prompts # Begin making your code changes: cd your-new-project-name Creating a Gadget barge gadget # ...Then follow the prompts # Begin making your code changes: cd your-new-project-name Creating a Cabin barge gadget # ...Then follow the prompts # Begin making your code changes: cd your-new-project-name Publishing Your Changes # Build a .phar (Gadgets and Cabins) or .zip (Motifs): barge build # After building, feel free to manually install the deliverable in a local # Airship installation. # Once you are satisfied with the quality of your extension, sign it: barge sign # To make your extension available on Skyport: barge release In-Depth Guide * Developing Motifs - Change the way your Airship looks * Developing Gadgets - Alter an existing Airship Cabin * Developing Cabins - Create your own Airship applications |