Do you want to add your project structure tree in your .readme file?
Install tree
sudo apt install tree
Just type tree inside of your project directory
tree
If you want to ignore a folder from your tree
like node_modules, you can do this by
tree -I node_modules
How about you want to ignore multiple folder from your tree, you can do this by
tree -I "node_modules|venv|lib"
Top comments (0)