Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
734f6564
Commit
734f6564
authored
Aug 08, 2016
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change project_structure content to a new file
parent
b5c159c9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
39 deletions
+42
-39
code_style.md
docs/code_style.md
+0
-39
project_structure.md
docs/project_structure.md
+42
-0
No files found.
docs/code_style.md
View file @
734f6564
...
...
@@ -66,45 +66,6 @@ Python代码参考pocoo style一致。JavaScript代码参考Google的Coding Form
Python代码参考pocoo style一致。JavaScript代码参考Google的Coding Format说明。
## 项目骨架
## 项目骨架
说明如下:
```
.
├── assets // app目录
│ ├── admin.py
│ ├── apps.py // 新版本django app设置文件
│ ├── api.py // api文件
│ ├── __init__.py
│ ├── migrations // models Migrations版本控制目录
│ │ └── __init__.py
│ ├── models.py // 数据模型目录
│ ├── static // app下静态资源目录
│ │ └── assets // 多一层目录,防止资源重名
│ │ │ └── some_image.png
│ ├── templates // app下模板目录
│ │ └── assets // 多一层目录,防止资源重名
│ │ │ └── asset_list.html
│ ├── templatetags // 模板标签目录
│ ├── tests.py // 测试用例文件
│ ├── urls.py // urlconf文件
│ └── views.py // views文件
├── docs // 所有doc文件放到该目录
│ └── README.md
├── jumpserver // 项目设置目录
│ ├── __init__.py
│ ├── settings.py // 项目设置文件
│ ├── urls.py // 项目入口urlconf
│ └── wsgi.py
├── LICENSE
├── manage.py
├── README.md
├── static // 项目静态资源目录
└── templates // 项目模板目录
```
### Go项目
...
...
docs/project_structure.md
0 → 100644
View file @
734f6564
## 项目骨架
## 项目骨架
说明如下:
```
.
├── config-example.py // 配置文件样例
├── docs // 所有doc文件放到该目录
│ └── README.md
├── LICENSE
├── README.md
├── install // 安装说明
├── dashboard
│ └── assets // app目录
│ │ ├── admin.py
│ │ ├── apps.py // 新版本django app设置文件
│ │ ├── api.py // api文件
│ │ ├── __init__.py
│ │ ├── migrations // models Migrations版本控制目录
│ │ └── __init__.py
│ │ ├── models.py // 数据模型目录
│ │ ├── static // app下静态资源目录
│ │ │ └── assets // 多一层目录,防止资源重名
│ │ │ └── some_image.png
│ │ ├── templates // app下模板目录
│ │ └── assets // 多一层目录,防止资源重名
│ │ └── asset_list.html
│ │ ├── templatetags // 模板标签目录
│ │ ├── tests.py // 测试用例文件
│ │ ├── urls.py // urlconf文件
│ │ └── views.py // views文件
│ ├── jumpserver // 项目设置目录
│ │ ├── __init__.py
│ │ ├── settings.py // 项目设置文件
│ │ ├── urls.py // 项目入口urlconf
│ │ └── wsgi.py
│ ├── manage.py
│ ├── static // 项目静态资源目录
│ └── templates // 项目模板目录
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment