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 May 22, 2024 by 刁翔宇's avatar 刁翔宇
Hide whitespace changes
Inline Side-by-side
competition-files/07-提交仓库目录和文件描述.md 0 → 100644
View page @ f85a6401
```text
├── bash-doxygen //bash脚本内迁文档
│ ├── COPYING
│ ├── doxygen-bash.sed
│ ├── README.md
│ └── test
│ ├── input
│ └── output
├── deploy-scripts //开发环境部署脚本
│ ├── Doxyfile-sh //Doxygen 配置文件
│ ├── 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 //存放资源文件
│ │ ├── bash-ps1-temp
│ │ └── zsh-ps1-temp
│ └── remote //远程环境部署脚本
│ ├── bin
│ │ └── ubuntu-server-deploy.sh //服务器环境部署脚本
│ └── share
│ └── bash-ps1-temp
├── dev-container //开发,测试环境的容器化环境
│ └── Dockerfile
├── docs-mdbook //使用mdbook生成的文档,适合部署在静态页面托管服务上
│ ├── book.toml //mdbook的配置文件
│ ├── README.md
│ └── src
│ ├── 01-stack
│ │ └── index.md
│ ├── 02-usage
│ │ └── index.md
│ ├── 03-contribute
│ │ ├── coding.md
│ │ ├── documenting.md
│ │ ├── get-involved.md
│ │ └── index.md
│ ├── 04-milestones
│ │ └── index.md
│ ├── 05-develop
│ │ ├── code.md
│ │ ├── compiling.md
│ │ ├── index.md
│ │ └── path.md
│ ├── about.md
│ ├── intro.md
│ └── SUMMARY.md
├── LICENSE //GPLv3
├── lnmp-scripts //服务器lnmp自动部署脚本
│ ├── deploy.sh
│ ├── LICENSE
│ ├── README.md
│ ├── src
│ │ ├── 00-env.sh
│ │ ├── 01-mkdir.sh
│ │ ├── 10-ppa.sh.temp
│ │ ├── 15-apt.sh
│ │ ├── 30-mariadb.sh
│ │ ├── 40-doanload.sh
│ │ ├── 45-extract.sh
│ │ ├── 50-chown.sh
│ │ ├── 50-linkroot.sh
│ │ ├── 55-rename-dir.sh
│ │ ├── 60-nginx.sh
│ │ ├── 70-certbot.sh
│ │ └── 99-deamon.sh
│ └── usr //资源文件
│ └── share
│ ├── apt //apt配置文件
│ │ └── apt.conf.d
│ │ └── 99-proxy.conf
│ └── nginx //nginx配置文件
│ └── sites-available
│ ├── chyrp
│ ├── flarum
│ ├── mediawiki
│ ├── mtt
│ ├── phpmyadmin
│ └── phproject
├── project2210132-239120.wiki //项目wiki
│ ├── competition-files
│ │ ├── 分工和协作.md
│ │ ├── 开发计划.md
│ │ ├── 比赛收获.md
│ │ ├── 目标描述.md
│ │ └── 系统框架设计.md
│ ├── competition-files.md
│ ├── contribute.md
│ ├── deploy-scripts
│ │ ├── arch-deploy.md
│ │ ├── example-deploy.md
│ │ └── ubuntu-deploy.md
│ ├── deploy-scripts.md
│ └── Home.md
└── README.md
```
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