Skip to content

Commit

Permalink
docs: update folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
RulerChen committed Feb 9, 2024
1 parent 567e580 commit 1086006
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 3 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,32 @@ Options:
-h, --help display help for command
```

## 📂 Folder Structure

```bash
├─ src
│ ├─ index.ts
│ ├─ __tests__
│ │ └─ user.spec.ts
│ ├─ e2e
│ │ └─ user.spec.ts
│ ├─ controllers
│ │ └─ user.ts
│ ├─ models
│ │ └─ user.ts
│ └─ routes
│ ├─ index.ts
│ └─ user.ts
├─ .eslintrc.json
├─ .gitignore
├─ .prettierrc.json
├─ jest.config.ts
├─ package-lock.json
├─ package.json
├─ README.md
└─ tsconfig.json
```

## 📚 License

This project is licensed under the terms of the MIT license.
Expand Down
26 changes: 26 additions & 0 deletions packages/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,32 @@ Options:
-h, --help display help for command
```

## 📂 Folder Structure

```bash
├─ src
│ ├─ index.ts
│ ├─ __tests__
│ │ └─ user.spec.ts
│ ├─ e2e
│ │ └─ user.spec.ts
│ ├─ controllers
│ │ └─ user.ts
│ ├─ models
│ │ └─ user.ts
│ └─ routes
│ ├─ index.ts
│ └─ user.ts
├─ .eslintrc.json
├─ .gitignore
├─ .prettierrc.json
├─ jest.config.ts
├─ package-lock.json
├─ package.json
├─ README.md
└─ tsconfig.json
```

## 📚 License

This project is licensed under the terms of the MIT license.
Expand Down
4 changes: 2 additions & 2 deletions packages/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gen-express-cli",
"version": "1.0.1",
"version": "1.0.2",
"description": "A simple express cli to generate express app simply by running a command",
"main": "index.js",
"type": "module",
Expand Down

0 comments on commit 1086006

Please sign in to comment.