Skip to content

Mac tree

Shuang0420 edited this page Feb 24, 2017 · 1 revision
$ brew install tree
$ tree
└── mysite
    ├── manage.py
    ├── mysample
    │   ├── __init__.py
    │   ├── __pycache__
    │   │   ├── __init__.cpython-36.pyc
    │   │   ├── urls.cpython-36.pyc
    │   │   └── views.cpython-36.pyc
    │   ├── admin.py
    │   ├── apps.py
    │   ├── migrations
    │   │   └── __init__.py
    │   ├── models.py
    │   ├── tests.py
    │   ├── urls.py
    │   └── views.py
    ├── mysite
    │   ├── __init__.py
    │   ├── __pycache__
    │   │   ├── __init__.cpython-36.pyc
    │   │   ├── settings.cpython-36.pyc
    │   │   ├── urls.cpython-36.pyc
    │   │   └── wsgi.cpython-36.pyc
    │   ├── settings.py
    │   ├── templates
    │   │   └── mysample
    │   │       └── dashboard.html
    │   ├── urls.py
    │   └── wsgi.py
    └── static

[[TOC]]

Clone this wiki locally