Skip to content

Commit

Permalink
docs: improve 'project create' command docs
Browse files Browse the repository at this point in the history
  • Loading branch information
keskiju committed Feb 13, 2024
1 parent f0fd6f9 commit f48b847
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial/01-starting-a-new-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ Since this is a tutorial, we can skip all preliminary planning and design, and j
Create a new project based on the [full-stack-template](https://github.com/TaitoUnited/full-stack-template) by running one of the following commands (**a** or **b**). In most cases you should choose the option **a**. If, however, you work for multiple organizations, you can use the option **b** to define the organization in question.

**a) Create the project using your default settings**
**a) Create the project based on the full-stack-template using your default settings**

```shell
taito project create full-stack-template
```

**b) Create the project using default settings of an organization**
**b) Create the project based on the full-stack-template using default settings of a specific organization**

```shell
taito -o ORGANIZATION project create full-stack-template
Expand Down
12 changes: 9 additions & 3 deletions help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ QUICK EXAMPLES
build release:prod # Release build for prod environment

PROJECT TEMPLATES
project create my-template # Create a project based on template
project upgrade # Upgrade project using template
project create my-template # Create a project based on "my-template"
project upgrade # Upgrade project using the original template

PROJECT CONFIGURATION
project apply # Migrate project to the latest configuration
Expand Down Expand Up @@ -1047,7 +1047,13 @@ PROJECT: BUILDS (mainly for CI/CD)
PROJECT: TEMPLATES

project create TEMPLATE [BRANCH]
Create a new project using a template.
Create a new project using a template. TEMPLATE is the name of the template.
By default the command uses the master branch of the template, but you can
override this with BRANCH.
---
Examples:
taito project create full-stack-template
taito project create react-native-template

project migrate TEMPLATE [BRANCH]
Migrate an old project to use the given template.
Expand Down

0 comments on commit f48b847

Please sign in to comment.