依赖组件
- python 1.7+
- Django 1.7
- request
- python-memcached
- mysql-python
目录结构
auto_install/ ├── auto_install │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── conf_file ├── manage.py ├── pxe │ ├── admin.py │ ├── forms.py │ ├── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── static │ ├── boot │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── scojs.css │ │ │ └── sco.message.css │ │ ├── fonts │ │ └── js │ │ ├── ajax.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery.js │ │ ├── npm.js │ │ ├── sco.confirm.js │ │ ├── sco.modal.js │ │ └── sco.valid.js │ └── images ├── templates │ ├── base.html │ ├── edit.html │ ├── exe.html │ ├── find.html │ ├── his.html │ ├── info.html │ ├── install.html │ ├── ks │ │ ├── conf.cfg │ │ └── webserver.cfg │ └── login.html └── tools ├── auto_install.sh ├── index.py └── post.sh 




