Skip to content

Commit

Permalink
chore: updated gitpod.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamorosi committed May 13, 2022
1 parent 5114d85 commit fbe196c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"ms-azuretools.vscode-docker"
],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "npm ci; cd examples/cdk; npm ci; cd ../sam; npm ci; cd ../../; npm run init-environment",
"postCreateCommand": "npm ci --foreground-scripts; cd examples/cdk; npm ci; cd ../sam; npm ci; cd ../../; npm run init-environment",
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node"
}
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ tasks:
# Install npm 8.x
npm i -g npm@next-8
# Install monorepo packages
npm ci
npm ci --foreground-scripts
# Install CDK exampels dependencies
cd examples/cdk
npm ci
Expand Down
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ reported the issue. Please try to include as much information as you can. Detail
The following steps describe how to set up the AWS Lambda Powertools for TypeScript repository on your local machine.
The alternative is to use a Cloud IDE like [Gitpod](https://www.gitpod.io/) or [Codespaces](https://github.com/features/codespaces) for your development.

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/awslabs/aws-lambda-powertools-typescript)

### Setup

The following tools need to be installed on your system prior to starting working on a pull request:
Expand All @@ -76,7 +78,7 @@ First, [fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) the
```console
git clone https://github.com/{your-account}/aws-lambda-powertools-typescript.git
cd aws-lambda-powertools-typescript
npm ci;
npm ci --foreground-scripts;
cd examples/cdk; npm ci
cd ../..
cd examples/sam; npm ci
Expand Down

0 comments on commit fbe196c

Please sign in to comment.