The template base file structure is as below
root
├───data
├───docs
├───src
│ ├───backend
│ └───frontend
├───test
├───.gitignore
├───README.md
└───LICENSE
data: to store application data, this should include huge datasets that is used in the applicaitondocs: to store final report and other documentssrc: to store source code of the application. Includesfrontendandbackendto store each respective component of the apptest: to store test cases