diff --git a/cmd/core-gui/frontend/public/manifest.webmanifest b/cmd/core-gui/frontend/public/manifest.webmanifest index 2c818a7..eb768a0 100644 --- a/cmd/core-gui/frontend/public/manifest.webmanifest +++ b/cmd/core-gui/frontend/public/manifest.webmanifest @@ -1,6 +1,6 @@ { - "name": "angular-starter", - "short_name": "angular-starter", + "name": "Core Framework", + "short_name": "Core", "display": "standalone", "scope": "./", "start_url": "./", diff --git a/cmd/core-gui/frontend/public/robots.txt b/cmd/core-gui/frontend/public/robots.txt index 84e94ce..bfa8dd7 100644 --- a/cmd/core-gui/frontend/public/robots.txt +++ b/cmd/core-gui/frontend/public/robots.txt @@ -1,3 +1,3 @@ User-agent: * Disallow: -Sitemap: https://angular.ganatan.com/sitemap.xml \ No newline at end of file +Sitemap: /sitemap.xml diff --git a/cmd/core-gui/frontend/tools/scripts/generate-project-structure.js b/cmd/core-gui/frontend/tools/scripts/generate-project-structure.js deleted file mode 100644 index 85e1353..0000000 --- a/cmd/core-gui/frontend/tools/scripts/generate-project-structure.js +++ /dev/null @@ -1,49 +0,0 @@ -'use strict'; - -const fs = require('fs'); -const path = require('path'); - -function getDirectoryStructure(dirPath, level = 0) { - const files = fs.readdirSync(dirPath); - - let structure = ''; - - files.forEach(file => { - const fullPath = path.join(dirPath, file); - const isDirectory = fs.lstatSync(fullPath).isDirectory(); - - structure += `${' '.repeat(level)}|-- ${file}\n`; - - if (isDirectory) { - structure += getDirectoryStructure(fullPath, level + 1); - } - }); - - return structure; -} - -function generateStructureForFolders(folders) { - let fullStructure = ''; - - folders.forEach(folder => { - const folderPath = path.join(__dirname, '..', '..', folder); - if (fs.existsSync(folderPath)) { - fullStructure += `\nStructure of ${folder}:\n`; - fullStructure += getDirectoryStructure(folderPath); - } else { - fullStructure += `\n${folder} directory does not exist.\n`; - } - }); - - return fullStructure; -} - -const foldersToInspect = ['src', 'tools']; -const projectStructure = generateStructureForFolders(foldersToInspect); - -console.log(projectStructure); - -module.exports = { - getDirectoryStructure, - generateStructureForFolders, -};