This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from suyiiyii/dev
更新文档
- Loading branch information
Showing
7 changed files
with
69 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# This file is a template, and might need editing before it works on your project. | ||
# To contribute improvements to CI/CD templates, please follow the Development guide at: | ||
# https://docs.gitlab.com/ee/development/cicd/templates.html | ||
# This specific template is located at: | ||
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Docker.gitlab-ci.yml | ||
|
||
# Build a Docker image with CI/CD and push to the GitLab registry. | ||
# Docker-in-Docker documentation: https://docs.gitlab.com/ee/ci/docker/using_docker_build.html | ||
# | ||
# This template uses one generic job with conditional builds | ||
# for the default branch and all other (MR) branches. | ||
|
||
docker-build: | ||
# Use the official docker image. | ||
image: docker:cli | ||
stage: build | ||
services: | ||
- docker:dind | ||
variables: | ||
DOCKER_IMAGE_NAME: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG | ||
before_script: | ||
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY | ||
# All branches are tagged with $DOCKER_IMAGE_NAME (defaults to commit ref slug) | ||
# Default branch is also tagged with `latest` | ||
script: | ||
- docker build --pull -t "$DOCKER_IMAGE_NAME" . | ||
- docker push "$DOCKER_IMAGE_NAME" | ||
- | | ||
if [[ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]]; then | ||
docker tag "$DOCKER_IMAGE_NAME" "$CI_REGISTRY_IMAGE:latest" | ||
docker push "$CI_REGISTRY_IMAGE:latest" | ||
fi | ||
# Run this job in a branch where a Dockerfile exists | ||
rules: | ||
- if: $CI_COMMIT_BRANCH | ||
exists: | ||
- Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,25 @@ | ||
|
||
* 标题, 10s | ||
* 项目简介, 10-20s | ||
* 简要介绍背景 | ||
* 项目功能 30s | ||
* 项目功能 45s | ||
* 简要展示页面,介绍有哪一些功能 | ||
* 项目亮点(难点亮点结合起来一起谈) | ||
* 用户体验 | ||
* 项目架构 45s | ||
* 目亮点(难点亮点结合起来一起谈) | ||
* * 用户体验20s * 3 | ||
* 二维码支付 | ||
* RBAC权限校验,审计日志 | ||
* 平台功能 | ||
* 安全!!(HTTPS) | ||
* 开放性 | ||
* RBAC权限认证,审计日志 | ||
* 使用集群部署,自动负载均衡,故障转移,保证用户良好体验(展示jmeter压测截图,对比) | ||
* 平台功能 20s * 3 | ||
* 连接安全!!(HTTPS,展示小锁图标,对比) | ||
* 输入安全(xss,输入校验,展示输入不符合规则的提示,对比) | ||
* 第三方校验(RSA)(从开放接口到接口安全性) | ||
* 平台理念 | ||
* 平台理念 20s | ||
* 开放性 | ||
* 展示更多项目亮点 | ||
* 致谢,(心得体会,感谢师兄,感谢老师的指导)20s | ||
|
||
以设问的形式引出问题 | ||
|
||
|
||
|
||
10+45+60+60+20+20 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.