diff --git a/structure-folders.md b/structure-folders.md index 689a772..3324e77 100644 --- a/structure-folders.md +++ b/structure-folders.md @@ -5,12 +5,16 @@ Each repository in this project has a specific folder structure that i find to b ``` root/ - client/ - - components/ - - pages/ + - markdown/ + - pages/ + - account/ + - administration/ - panels/ - utilities/ - app.jsx - - markdown/ + - dashboard.jsx + - homepage.jsx + - not-found.jsx - styles/ - common/ - utilities/ @@ -21,6 +25,7 @@ root/ - index.js - server.js - sql/ + - create_database.sql - .envdev - .gitignore - configure-script.js @@ -33,7 +38,7 @@ These are the most common folders and files between the core project and the mic ## 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 full `pages`, or as `panels` (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/pages/`. `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.