diff --git a/.github/ISSUE_TEMPLATE/BUG.md b/.github/ISSUE_TEMPLATE/BUG.md index 8a667e5e..9924dbf8 100644 --- a/.github/ISSUE_TEMPLATE/BUG.md +++ b/.github/ISSUE_TEMPLATE/BUG.md @@ -14,7 +14,7 @@ Please check if there is no similar issue before creating this one. - Leon version: - OS (or browser) version: - Node.js version: -- Complete "npm run check" output: +- Complete "leon check" (or "npm run check") output: - (if using Docker) Complete "npm run docker:check" output: - (optional) Leon package version: diff --git a/README.md b/README.md index ec38471f..fc1c86c3 100644 --- a/README.md +++ b/README.md @@ -29,10 +29,6 @@ Story
- - --- ## 👋 Introduction @@ -83,8 +79,6 @@ Gitpod will automatically setup an environment and run an instance for you. - [Node.js](https://nodejs.org/) >= 16 - [npm](https://npmjs.com/) >= 8 -- [Python](https://www.python.org/downloads/) >= 3 -- [Pipenv](https://docs.pipenv.org) >= 2020.11.15 - Supported OSes: Linux, macOS and Windows To install these prerequisites, you can follow the [How To section](https://docs.getleon.ai/how-to/) of the documentation. @@ -92,28 +86,22 @@ To install these prerequisites, you can follow the [How To section](https://docs ### Installation ```sh -# Clone the repository (stable branch) -git clone -b master https://github.com/leon-ai/leon.git leon -# OR download the latest release at: https://github.com/leon-ai/leon/releases/latest +# Install the Leon CLI +npm install --global @leon-ai/cli -# Go to the project root -cd leon - -# Install -npm install +# Install Leon (stable branch) +leon create birth +# OR install from the develop branch: leon create birth --develop ``` ### Usage ```sh # Check the setup went well -npm run check - -# Build -npm run build +leon check # Run -npm start +leon start # Go to http://localhost:1337 # Hooray! Leon is running @@ -122,11 +110,11 @@ npm start ### Docker Installation ```sh -# Build -npm run docker:build +# Install Leon +leon create birth --docker # Run -npm run docker:run +leon start # Go to http://localhost:1337 # Hooray! Leon is running