Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@ A documentation has been created when project [Zeva](https://github.com/bcgov/ze
### prerequisites

* npm

```sh
npm i yo -g
```
* yeoman

TODO: Consider using [`npx`](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) since it will install Yeoman if it doesn't exist.
```sh
Expand All @@ -33,6 +30,7 @@ npx yo @bcgov/bcdk:python-hello

### setup

Install the generator globally or locally
```sh
npm install -g @bcgov/generator-bcdk@latest
```
Expand All @@ -53,19 +51,19 @@ mkdir <your-project>
cd <your-project>

// list the generators
yo bcdk --generators
npx yo @bcgov/bcdk --generators

// create the jenkins pipeline
yo bcdk:jenkins
npx yo @bcgov/bcdk:jenkins

// create your module/project/app pipeline
yo bcdk:pipeline
npx yo @bcgov/bcdk:pipeline

// add module/project/app
yo bcdk:python-hello
npx yo @bgov/bcdk:python-hello

// create your module/project/app jenkins job
yo bcdk:jenkins-job
npx yo @bcgov/bcdk:jenkins-job
```

#### bdck:jenkins
Expand Down