Skip to content

Commit

Permalink
update readme project tree
Browse files Browse the repository at this point in the history
  • Loading branch information
con-cis committed Oct 10, 2023
1 parent 676978b commit ca1c8cb
Showing 1 changed file with 55 additions and 19 deletions.
74 changes: 55 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,25 +65,61 @@ Mirth Connect Config Documentation Tool utilizes a modern stack, including Vite
- [VSCode](https://code.visualstudio.com/) + [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) + [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin)

## Procject structure
├──src
│ ├──enums
│ ├──models
│ ├──main
│ │ ├──index.ts
│ │ └──modules
│ │ └──models
│ │ └──...
│ ├──preload
│ │ ├──index.ts
│ │ └──...
│ └──renderer # with vue, vite, vuetify
│ ├──src
│ ├──index.html
│ └──...
├──electron.vite.config.ts
├──package.json
└──...

```
mc-docu
src
├── enums
│ ├── ApiResponses.ts
│ ├── ConnectorType.ts
│ └── FilteredProperties.ts
├── main
│ ├── index.ts
│ ├── modules
│ │ ├── fileHandling
│ │ │ ├── FileDialogService.ts
│ │ │ └── FileService.ts
│ │ ├── jsonProcessing
│ │ │ └── JsonProcessingService.ts
│ │ └── xmlProcessing
│ │ └── XmlProcessingService.ts
│ ├── services
│ │ ├── Config.ts
│ │ └── Logger.ts
│ └── utils
│ ├── Common.ts
│ └── ErrorHandling.ts
├── models
│ ├── ChannelData.ts
│ ├── ConnectorData.ts
│ ├── DestinationConnectorData.ts
│ ├── ExtractedData.ts
│ ├── MetaData.ts
│ ├── SourceConnectorData.ts
│ ├── TransformerData.ts
│ └── index.ts
├── preload
│ ├── index.d.ts
│ └── index.ts
├── renderer
│ ├── index.html
│ └── src
│ ├── App.vue
│ ├── assets
│ │ └── css
│ │ └── styles.less
│ ├── components
│ │ ├── DataTable.vue
│ │ └── Versions.vue
│ ├── data
│ │ ├── checkboxOptionsData.ts
│ │ └── headerData.ts
│ ├── env.d.ts
│ ├── main.ts
│ └── plugins
│ └── vuetify.ts
└── types
└── ConfigData.ts
```
### Build

```bash
Expand Down

0 comments on commit ca1c8cb

Please sign in to comment.