Updated structure folders (markdown)

2021-03-19 19:49:19 +11:00
parent b465aa06b2
commit 9369ad3afc
+3 -3
@@ -29,13 +29,13 @@ root/
- README.md
```
These are the most common folders and files between the core project and the microservices. Some, like `client` are only present in the core repo, while others not shown, are only present in their specific `server/` directories (such as `server/auth/` in the auth-server).
These are the most common folders and files between the core project and the microservices. Some, like `client/` are only present in the core repo, while others not shown, are only present in their specific `server/` directories (such as `server/auth/` in the auth-server).
## Client
This folder structure is only in the core repo, and provides the client-facing React code. Most of the components are under `client/components` divided either as a full page, or as a panel (a reusable component on a larger page).
This folder structure is only in the core repo, and provides the client-facing React code. Most of the components are under `client/components/` divided either as full `pages`, or as `panels` (a reusable component on a larger page).
`client/markdown/` contains markdown files that are rendered as entire pages on their own, while `client/styles` contains the CSS files for specific or entire areas of the project.
`client/markdown/` contains markdown files that are rendered as entire pages on their own, while `client/styles/` contains the CSS files for specific or entire areas of the project.
## Common