Ent
how to use
Paste your project's tree structure into the text area.
Get instant bash commands to create the directory and file structure.
Click the "Copy" button to save the commands to your clipboard.
tree
stolen-ideas ├── config │ ├── env │ └── settings.js ├── src │ ├── api │ │ ├── resumeParser.js │ │ └── skillExtractor.js │ ├── models │ │ └── resumeAnalysisModel.js │ ├── data │ │ └── preprocess.js │ ├── pages │ │ ├── ResumeUpload.js │ │ └── AnalysisResults.js │ ├── utils │ │ ├── dataFormatter.js │ │ └── scoringAlgorithm.js │ ├── App.js │ └── index.js ├── .env ├── .gitignore └── package.json
sh
Copy