Introduction
Mongez File System Structure is not faraway from CRA structure.
Let's have a quick look about a proper file system tree structure.
โโโ publicโ โโโ index.htmlโ โโโ other-filesโโโ srcโ โโโ index.tsโ โโโ appsโ โโโ sharedโ โ โโโ assetsโ โ โโโ localesโ โ โ โโโ ar.tsโ โ โ โโโ en.tsโ โ โ โโโ localeCode.tsโ โ โโโ apps-list.tsโ โ โโโ config.tsโ โ โโโ shared-provider.tsโ โ โโโ style-settings.tsโโโ .envโโโ package.jsonโโโ README.mdโโโ tsconfig.jsonโโโ yarn.lock
Let's chunk it into smaller pieces.
#
Basic Files/Directoiespublic
| tsconfig.json
| yarn.lock
README.md
are the same basic presented structure with the created project.
#
Dot Env File.env
has its own documentation from here.
#
Package.json Filepackage.json
also in the Project Preparation section
#
Apps DirectoryHere where all of your applications list can be settled safely, find out more about the apps directory from here.
#
Shared DirectoryThis can be called the Shared Application which means you set everything that can be used amung different apps so you don't get your data
| code
| files
duplicated.
Find out more from here