```treeview ├── docs/ │ ├── index.md │ └── api.md ├── src/ │ ├── main.py │ ├── parser.py │ └── utils/ │ └── helpers.py ├── tests/ │ └── test_main.py ├── pyproject.toml ├── Dockerfile ├── .gitignore └── README.md ```
```treeview * src/ ** components/ *** Button.tsx *** Input.tsx ** hooks/ *** useAuth.ts ** index.ts * public/ ** favicon.ico * package.json * tsconfig.json ```
```treeview # backend/ ## api/ ### routes.py ### models.py ## services/ ### auth.py ### db.py # frontend/ ## pages/ ### index.html ## styles/ ### main.css # docker-compose.yml ```
```treeview ├── main.py ├── requirements.txt ├── Makefile └── .env ```
```treeview
└── project/
└── src/
└── core/
└── utils/
└── helpers/
└── string.py
```