Merge pull request #23 from holepunchto/pear-terminal-comments

Less words in pear terminal guide
This commit is contained in:
David Mark Clements
2024-01-25 15:14:13 +01:00
committed by GitHub

View File

@@ -10,9 +10,9 @@ cd chat-bot
pear init --yes pear init --yes
``` ```
This will create a base structure for the project. This creates the base project structure.
- `package.json`. Configuration for the app. Notice the `pear` property. - `package.json`. App configuration. Notice the `pear` property.
- `index.js`. The entrpoint for the app. - `index.js`. App entrypoint.
- `app.js`. The main code. - `app.js`. Main code.
- `test/index.test.js`. Skeleton for writing tests. - `test/index.test.js`. Test skeleton.