Created
October 15, 2013 02:39
-
-
Save carlcrott/6985699 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(x3)lilith@lilith:~/django_projects/x3/base$ ls | |
assay cartridge chemistry chip experiment __init__.py __init__.pyc logfile logfile.1 logfile.2 measurement prototype settings.py settings.pyc static urls.py urls.pyc wsgi.py wsgi.pyc | |
(x3)lilith@lilith:~/django_projects/x3/base$ tree experiment/ | |
experiment/ | |
├── __init__.py | |
├── __init__.pyc | |
├── main.html | |
├── models.py | |
├── models.pyc | |
├── static | |
│ └── index.html | |
├── templates | |
│ └── experiment | |
│ ├── main.html | |
│ └── run.html | |
├── urls.py | |
├── urls.pyc | |
├── views.py | |
└── views.pyc | |
3 directories, 12 files | |
(x3)lilith@lilith:~/django_projects/x3/base$ tree chip/ | |
chip/ | |
├── __init__.py | |
├── __init__.pyc | |
├── models.py | |
├── models.pyc | |
├── static | |
│ └── index.html | |
├── templates | |
│ └── chip | |
│ ├── main.html | |
│ └── run.html | |
├── urls.py | |
└── views.py | |
3 directories, 9 files | |
(x3)lilith@lilith:~/django_projects/x3/base$ tree chemistry/ | |
chemistry/ | |
├── __init__.py | |
├── __init__.pyc | |
├── models.py | |
├── models.pyc | |
├── static | |
│ └── index.html | |
├── templates | |
│ └── chemistry | |
│ ├── main.html | |
│ └── run.html | |
├── urls.py | |
├── urls.pyc | |
└── views.py | |
3 directories, 10 files | |
(x3)lilith@lilith:~/django_projects/x3/base$ tree assay/ | |
assay/ | |
├── __init__.py | |
├── __init__.pyc | |
├── models.py | |
├── models.pyc | |
├── tests.py | |
└── views.py | |
0 directories, 6 files | |
(x3)lilith@lilith:~/django_projects/x3/base$ tree cartridge/ | |
cartridge/ | |
├── __init__.py | |
├── __init__.pyc | |
├── models.py | |
├── models.pyc | |
├── static | |
│ └── index.html | |
├── templates | |
│ └── cartridge | |
│ ├── main.html | |
│ └── run.html | |
├── urls.py | |
├── urls.pyc | |
├── views.py | |
└── views.pyc | |
3 directories, 11 files | |
(x3)lilith@lilith:~/django_projects/x3/base$ tree prototype/ | |
prototype/ | |
├── __init__.py | |
├── __init__.pyc | |
├── models.py | |
├── models.pyc | |
├── static | |
│ └── index.html | |
├── templates | |
│ └── Prototype | |
│ ├── main.html | |
│ └── run.html | |
├── tests.py | |
├── urls.py | |
├── urls.pyc | |
├── views.py | |
└── views.pyc | |
3 directories, 12 files | |
(x3)lilith@lilith:~/django_projects/x3/base$ tree measurement/ | |
measurement/ | |
├── __init__.py | |
├── __init__.pyc | |
├── migrations | |
│ ├── 0001_initial.py | |
│ ├── 0002_auto__add_field_measurements_cartridge_id.py | |
│ ├── 0003_measurement_add_cartirage_id.py | |
│ ├── 0004_auto__del_field_experiments_cartridge_id.py | |
│ ├── 0005_measurement_add_chip_id.py | |
│ ├── 0005_moving_cart_id.py | |
│ ├── 0006_measurement_add_chip_id.py | |
│ ├── 0007_auto__del_field_experiments_chip__del_field_experiments_prototype_id.py | |
│ ├── 0008_auto__add_field_experiments_prototype_id__del_field_measurements_proto.py | |
│ ├── 0009_auto__add_field_measurements_led_status.py | |
│ ├── 0010_auto__add_field_prototypes_prototype_version_0.py | |
│ └── 0011_auto__add_field_frames_tempreture_datapoint__add_field_frames_tempretu.py | |
├── models.py | |
├── templates | |
│ ├── 404.html | |
│ ├── base.html | |
│ └── main.html | |
├── tests.py | |
├── urls.py | |
├── urls.pyc | |
└── views.py | |
2 directories, 22 files | |
(x3)lilith@lilith:~/django_projects/x3/base$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment