# maintscripts **Repository Path**: hulingfeng211/maintscripts ## Basic Information - **Project Name**: maintscripts - **Description**: 日常系统维护的相关自动化脚本 - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 9 - **Forks**: 6 - **Created**: 2014-06-27 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #maintscripts --- 1.`nginx.py` --- > HTTP Server nginx automation install script that support **upstar** and **systemd** 2.`tornado-app-init.py` --- > generate SPA project structure base **tornado** and **react** >usage: * running script ``` ./tornado-app-init.py``` * The generated directory is as follows ``` ├── common #公共模块目录 │   ├── __init__.py ├── config.py #站点配置 ├── handler #handler目录 │   ├── __init__.py ├── manager.py #应用站点入口 ├── README.md ├── routes.py 站点路由 ├── static │   ├── css │   │   └── readme.md │   ├── img │   │   └── readme.md │   ├── js │   │   ├── bundle.js │   │   ├── components │   │   ├── index.jsx │   │   └── readme.md │   ├── lib │   │   └── readme.md │   ├── node_modules │   │   ├── babel-core │   │   ├── babel-loader │   │   ├── react │   │   ├── react-bootstrap │   │   ├── react-dom │   │   ├── react-router │   │   ├── react-router-bootstrap │   │   ├── tcomb-form │   │   └── webpack │   ├── package.json │   └── webpack.config.js └── templates ├── index.html └── readme.md ```