Skip to content

Latest commit

 

History

History
60 lines (53 loc) · 1.16 KB

project_structure.md

File metadata and controls

60 lines (53 loc) · 1.16 KB

Generating Tree View of Project Structure

The project structure can be created as follows using tree command.

tree -a -I ".git" .

Project Structure

With Files...

# Command:
# tree -a -I ".git" .
.
├── apps
│   └── minimal_app
│       ├── app.py
│       ├── .artifacts
│       │   └── map.html
│       └── requirements.txt
├── docs
│   └── .gitkeep
├── .gitignore
├── .ipynb_checkpoints
├── my_map.png
├── project_structure.md
├── README.md
├── .secrets
│   ├── .env.secret
│   ├── .env.shared
│   └── readme.md
├── src
│   ├── app.py
│   ├── .gitkeep
│   ├── .ipynb_checkpoints
│   │   └── notebook-checkpoint.ipynb
│   └── notebook.ipynb
├── .streamlit
└── .vscode
    ├── INFO.md
    └── settings.json

Without Files:

.
├── apps
│   └── minimal_app
│       └── .artifacts
├── docs
├── .ipynb_checkpoints
├── .secrets
├── src
│   └── .ipynb_checkpoints
├── .streamlit
└── .vscode