Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • P proj356 Dev-Env-Deploy
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 6
    • Issues 6
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Terraform modules
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • 空格斜杠全角
  • proj356 Dev-Env-Deploy
  • Wiki
  • Competition files
  • 07 提交仓库目录和文件描述

07 提交仓库目录和文件描述 · Changes

Page history
Update 07 提交仓库目录和文件描述 authored Jun 02, 2024 by 刁翔宇's avatar 刁翔宇
Hide whitespace changes
Inline Side-by-side
competition-files/07-提交仓库目录和文件描述.md
View page @ e0c99d35
```text
├── bash-doxygen //bash脚本内迁文档
```
project2210132-239120/
├── bash-doxygen
│ ├── COPYING
│ ├── doxygen-bash.sed
│ ├── README.md
│ └── test
│ ├── input
│ └── output
├── deploy-scripts //开发环境部署脚本
│ ├── Doxyfile-sh //Doxygen 配置文件
│ ├── local //本地环境部署脚本
├── deploy-scripts
│ ├── Doxyfile-sh
│ ├── local
│ │ ├── bin
│ │ │ ├── arch-deploy-aur.sh //Archlinux用的脚本
│ │ │ ├── arch-deploy.sh //同上
│ │ │ ├── env-check-linux.sh //在linux环境下验证系统环境的脚本
│ │ │ ├── env-check-nt.sh //在windows环境下验证环境的脚本
│ │ │ ├── env-check-osx.sh //在OSX环境下验证环境的脚本
│ │ │ ├── osx-deploy.sh // OSX部署用脚本
│ │ │ ├── ubuntu-deploy.sh //Ubuntu部署用脚本
│ │ │ └── windows-deploy.sh //windows部署用脚本
│ │ ├── deploy-menu.sh //自动调用对应平台脚本的入口脚本
│ │ ├── etc //存放
│ │ └── share //存放资源文件
│ │ │ ├── arch-deploy-aur.sh
│ │ │ ├── arch-deploy.sh
│ │ │ ├── env-check-linux.sh
│ │ │ ├── env-check-nt.sh
│ │ │ ├── env-check-osx.sh
│ │ │ ├── osx-deploy.sh
│ │ │ ├── ubuntu-deploy.sh
│ │ │ └── windows-deploy.sh
│ │ ├── deploy-menu.sh
│ │ ├── etc
│ │ └── share
│ │ ├── bash-ps1-temp
│ │ └── zsh-ps1-temp
│ └── remote //远程环境部署脚本
│ └── remote
│ ├── bin
│ │ └── ubuntu-server-deploy.sh //服务器环境部署脚本
│ │ └── ubuntu-server-deploy.sh
│ └── share
│ └── bash-ps1-temp
├── dev-container //开发,测试环境的容器化环境
├── dev-container
│ └── Dockerfile
├── docs-mdbook //使用mdbook生成的文档,适合部署在静态页面托管服务上
│ ├── book.toml //mdbook的配置文件
├── docs-mdbook
│ ├── book.toml
│ ├── README.md
│ └── src
│ ├── 01-stack
......@@ -53,8 +54,8 @@
│ ├── about.md
│ ├── intro.md
│ └── SUMMARY.md
├── LICENSE //GPLv3
├── lnmp-scripts //服务器lnmp自动部署脚本
├── LICENSE
├── lnmp-scripts
│ ├── deploy.sh
│ ├── LICENSE
│ ├── README.md
......@@ -72,12 +73,12 @@
│ │ ├── 60-nginx.sh
│ │ ├── 70-certbot.sh
│ │ └── 99-deamon.sh
│ └── usr //资源文件
│ └── usr
│ └── share
│ ├── apt //apt配置文件
│ ├── apt
│ │ └── apt.conf.d
│ │ └── 99-proxy.conf
│ └── nginx //nginx配置文件
│ └── nginx
│ └── sites-available
│ ├── chyrp
│ ├── flarum
......@@ -85,20 +86,34 @@
│ ├── mtt
│ ├── phpmyadmin
│ └── phproject
├── project2210132-239120.wiki //项目wiki
├── project2210132-239120.wiki
│ ├── competition-files
│ │ ├── 分工和协作.md
│ │ ├── 开发计划.md
│ │ ├── 比赛收获.md
│ │ ├── 目标描述.md
│ │ └── 系统框架设计.md
│ │ ├── 00-目标描述.md
│ │ ├── 01-比赛题目分析和相关资料调研.md
│ │ ├── 02-系统框架设计.md
│ │ ├── 03-开发计划.md
│ │ ├── 04-比赛过程中的重要进展.md
│ │ ├── 05-系统测试情况遇到的主要问题和解决方法.md
│ │ ├── 06-分工和协作.md
│ │ ├── 07-提交仓库目录和文件描述.md
│ │ └── 08-比赛收获.md
│ ├── competition-files.md
│ ├── contribute.md
│ ├── deploy-scripts
│ │ ├── arch-deploy.md
│ │ ├── example-deploy.md
│ │ ├── osx-deploy.md
│ │ └── ubuntu-deploy.md
│ ├── deploy-scripts.md
│ └── Home.md
└── README.md
│ ├── Home.md
│ └── nt-deploy.md
├── promotion
│ └── preliminary round
│ └── video-script.md
├── README.md
└── test-utils
├── test-arch.sh
└── test-ubuntu.sh
33 directories, 82 files
```
Clone repository
  • Home
  • competition files
    • 00 目标描述
    • 01 比赛题目分析和相关资料调研
    • 02 系统框架设计
    • 03 开发计划
    • 04 比赛过程中的重要进展
    • 05 系统测试情况遇到的主要问题和解决方法
    • 06 分工和协作
    • 07 提交仓库目录和文件描述
    • 08 比赛收获
  • contribute
  • deploiy cli
    • config.yaml
  • deploy cli
    • manual
View All Pages