How to do it...

  1. Create the project from the following template:
$ sls create --template-url https://github.com/danteinc/js-cloud-native-cookbook/tree/master/ch6/pipeline --path cncb-pipeline
  1. Navigate to the cncb-pipeline directory, cd cncb-pipeline.
  2. Initialize the Git repository locally and remotely in gitlab.com, as follows:
$ git init$ git remote add origin git@gitlab.com:<username>/cncb-pipeline.git$ git add .gitignore$ git commit -m "initial commit"$ git push -u origin master
  1. Confirm that the project was created in your Gitlab account.
  2. Create a new issue in the project named intialize-project.
  3. Press the Create merge request button and note the name of the branch, such as 1-initialize-project.
  4. Check out the branch locally at with  ...

Get JavaScript Cloud Native Development Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.