diff --git a/docs/ComponentStructure.drawio b/docs/ComponentStructure.drawio index 547eb5c..b3b597e 100644 --- a/docs/ComponentStructure.drawio +++ b/docs/ComponentStructure.drawio @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:52c70be0c74420ab5f591a2edd380399f4c163816dd871f137ac762ac4d25b2e -size 24103 +oid sha256:829ed99f71a3f6afe488ad3abdf8c8fa224425e14ab5198f5f7f259ba6d5ae79 +size 26469 diff --git a/docs/Project_Structure.md b/docs/Project_Structure.md index 355682b..4911096 100644 --- a/docs/Project_Structure.md +++ b/docs/Project_Structure.md @@ -1,12 +1,14 @@ # Project Structure -The project is structured this way - ``` . +├── .vscode/ VSCode config folder +│ ├── launch.json VSCode debug config +│ └── settings.json VSCode project config ├── docs/ Documentation folder ├── public/ Public folder in which the index.html │ │ import its resources +│ ├── smartcomponent/ SmartComponent folder │ └── workers/ Webworkers folder ├── src/ Source folder for the react app │ ├── assets/ Assets folder in which the react app @@ -24,6 +26,13 @@ The project is structured this way ├── test-server/ Tests servers to test the API │ ├── http.js Test server for bun.sh │ └── node-http.js Test server for Node.js +├── .drone.yml Drone.io ci configuration +├── .env.development Vite development environment config +├── .env.production Vite production environment config +├── .env.test Vite test environment config +├── .eslintrc.cjs eslint config file +├── .gitattributes git-lfs config file +├── .gitignore git ignore config file ├── azure-pipelines.yml Azure Pipelines YAML config file ├── index.html HTML Page ├── package-lock.json Describe the node_modules tree for npm