From a5955dc935591e904236c1de79470515168172fe Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sun, 22 Aug 2021 02:47:42 +1000 Subject: [PATCH] Updated structure folders (markdown) --- structure-folders.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) 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.