Skip to content

docs(readme): fix small typos #140

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 18, 2023
Merged
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This is the [Scaleway Functions](https://www.scaleway.com/en/serverless-function
```shell
serverless create --path my-func --template-url https://github.com/scaleway/serverless-scaleway-functions/tree/master/examples/${TEMPLATE}
```
3. Install deps.
3. Install dependencies.
```shell
cd my-func
npm i
Expand Down Expand Up @@ -76,7 +76,7 @@ The easiest way to create a new project is to use one of our templates. The list
# mkdir ~/my-srvless-projects
# cd ~/my-srvless-projects
```
2. Create a new project using `python3.
2. Create a new project using `python3`.

```bash
serverless create --template-url https://github.com/scaleway/serverless-scaleway-functions/tree/master/examples/python3 --path myService
Expand Down Expand Up @@ -164,7 +164,7 @@ The configuration includes the following parameters:
### Security and secret management

>**Important**:
We recommend you to not commit in VCS, and to not share your Project ID or access key to ensure the security of your configuration file, which may contain sensitive data.
We recommend you to not commit in a Version Control System (VCS), and to not share your Project ID or access key to ensure the security of your configuration file, which may contain sensitive data.

To keep your information safe and to share or commit your `serverless.yml` file you should remove your credentials from the file. Once you have done so, you can either:
- use global environment variables, or
Expand Down Expand Up @@ -225,7 +225,7 @@ function handle (event, context, cb) {
};
```

The use of ES modules is encouraged, since they are more efficient and make setup and debugging much easier.
The use of ES modules is encouraged since they are more efficient and make setup and debugging much easier.

Note that using `"type": "module"` or `"type": "commonjs"` in your `package.json` file will enable or disable some features in Node runtime, such as:
- `commonjs` is used as the default value
Expand Down