diff --git a/site/source/developer-docs/specification/checklist.rst b/site/source/developer-docs/specification/checklist.rst index e6bca73..08cbf9f 100644 --- a/site/source/developer-docs/specification/checklist.rst +++ b/site/source/developer-docs/specification/checklist.rst @@ -5,7 +5,7 @@ Checklist ========= .. contents:: - :depth: 2 + :depth: 2 :local: This guide outlines a checklist of steps to complete in order to package a service for StartOS. For a more in depth example, visit the :ref:`build your first package ` guide. @@ -22,8 +22,8 @@ Packaging 7. Create instructions file 8. Create icon file 9. Add license - 10. Package all components into s9pk using embassy-sdk - 11. Verify package components using embassy-sdk + 10. Package all components into s9pk using start-sdk + 11. Verify package components using start-sdk 12. Create a wrapper repository on GitHub to host all package assets for review 13. (Optional) Add all package build steps to a Makefile for replicability diff --git a/site/source/developer-docs/specification/makefile.rst b/site/source/developer-docs/specification/makefile.rst index 4638b80..19db631 100644 --- a/site/source/developer-docs/specification/makefile.rst +++ b/site/source/developer-docs/specification/makefile.rst @@ -15,7 +15,7 @@ This purpose of this file is to: - Read the docker container and build the project - Build all prerequisites for running the docker file - Build all dependencies -- Package assets and docker image using ``embassy-sdk pack`` +- Package assets and docker image using ``start-sdk pack`` Example ------- diff --git a/site/source/developer-docs/specification/package.rst b/site/source/developer-docs/specification/package.rst index ff23f59..08e092e 100644 --- a/site/source/developer-docs/specification/package.rst +++ b/site/source/developer-docs/specification/package.rst @@ -13,7 +13,7 @@ The minimum necessary files for this bundle are: - LICENSE - icon.png -Each new version release of a service should include the updated version of these files re-bundled into a new ``.s9pk``. . +Each new version release of a service should include the updated version of these files re-bundled into a new ``.s9pk``. . Building -------- @@ -22,12 +22,12 @@ To package all components into an ``.s9pk``, run the following command from the .. code:: bash - embassy-sdk pack + start-sdk pack Let's also make sure to verify the validity of the package: .. code:: bash - embassy-sdk verify s9pk /path/to/hello-world.s9pk + start-sdk verify s9pk /path/to/hello-world.s9pk -If anything goes wrong, an error message will indicate the missing component or other failure. \ No newline at end of file +If anything goes wrong, an error message will indicate the missing component or other failure.