🐵配置git环境与项目创建
2023-1-18
| 2023-1-20
0  |  阅读时长 0 分钟
type
status
date
slug
summary
tags
password
category
Property
Jan 20, 2023 04:03 PM
icon
项目包含的模块
  • PK模块:匹配界面(微服务)、实况直播界面(WebSocket协议)
  • 对局列表模块:对局列表界面、对局录像界面
  • 排行榜模块:Bot排行榜界面
  • 用户中心模块:注册界面、登录界面、我的Bot界面、每个Bot的详情界面
前后端分离模式
  • SpringBoot实现后端
  • Vue3实现Web端和AcApp端
项目框架:
notion image
Git 作用:
  • 存档
  • 同步不同机器上的代码
Git 配置:
  1. cd 进入家目录
  1. 先生成密钥,执行ssh-keygen 若之前已经生成则直接cd .ssh/
  1. id_rsa.pub 的内容复制到Git上
  • git remote add origin git@xxx
  • git push -u origin master
 
Git 常用命令:
  • git init
  • git status
  • git add .
  • git commit -m “text”
  • git push
notion image
前后端分离:Html页面是在用户浏览器渲染(字符串拼接)
前后端不分离:在服务器里渲染
 
配置Spring后端
打开IDEA,新建项目,选Java8,注意配套的SpringBoot版本小于3
 
  • 开发
  • Git
  • Linux基础(三)shell语法 HJ机试题目整理
    Loading...
    目录