Skip to content
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

Small grammar changes #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ To run mongodb once:
mongod --config /usr/local/etc/mongod.conf
```

To automatically run mongodb after login::
To automatically run mongodb after login:

```
brew services start mongodb/brew/[email protected]
```

#### Environment

We use [direnv] to autoload exported secrets from `.envrc` file, each time you enter in this project's folder.
We use [direnv] to autoload exported secrets from the `.envrc` file, each time you enter in this project's folder.

Run `direnv allow` after each time secrets are changed in `.envrc` (development secrets only).

Expand Down Expand Up @@ -60,7 +60,7 @@ export REACT_APP_MAPS_KEY=662607015
netlify dev
```

This will open a local server running at `http://localhost:3000` with your app
This will open a local server running at `http://localhost:3000` with your app.

Install `netlify` client:

Expand All @@ -84,7 +84,7 @@ yarn start:lambda

This will open a local server running at `http://localhost:9000` serving your Lambda functions, updating as you make changes in the `src/lambda` folder.

You can then access your functions directly at `http://localhost:9000/{function_name}`, but to access them with the app, you'll need to start the app dev server.
You can then access your functions directly at `http://localhost:9000/{function_name}`. To access them with the app, you'll need to start the app dev server.

### Run the app dev server

Expand All @@ -100,8 +100,8 @@ Local in-app requests to the relative path `/.netlify/functions/*` will automati

### Test function individually

Make sure, that all required servers are running as outlined above. To test the
login callback you can then run the following. Please note, that `netlify` does
Make sure that all required servers are running as outlined above. To test the
login callback you can then run the following. Please note: `netlify` does
not fully mock the user metadata yet.

```
Expand Down