README 文档更新;websocket可以连上了
This commit is contained in:
134
docs/EnvCheck.md
Normal file
134
docs/EnvCheck.md
Normal file
@@ -0,0 +1,134 @@
|
||||
## 环境安装
|
||||
|
||||
### cnpm
|
||||
|
||||
```bash
|
||||
# electron 需要使用 cnpm 安装依赖
|
||||
npm install -g cnpm --registry=https://registry.npmmirror.com
|
||||
```
|
||||
|
||||
|
||||
|
||||
## 环境变量检查
|
||||
|
||||
如果希望查看环境变量是否配置成功,可以使用以下命令:
|
||||
|
||||
(下面以 Windows 下命令说明,Linux 系统下 `echo %变量名%` 需要改成 `echo $变量名`)
|
||||
|
||||
```bash
|
||||
echo %PATH%
|
||||
# 您会看到以;分隔的很多路径,其中应该包括:
|
||||
# JDK 所在文件夹下的 bin 目录:...\openjdk-11\bin
|
||||
# Maven 所在文件夹下的 bin 目录:...\apache-maven-3.6.3\bin
|
||||
|
||||
echo %JAVA_HOME%
|
||||
# 您会看到 JDK 所在文件夹
|
||||
|
||||
echo %MAVEN_HOME%
|
||||
# 您会看到 Maven 所在文件夹
|
||||
```
|
||||
|
||||
如果希望查看环境是否安装成功或安装的环境版本,可以使用以下命令:
|
||||
|
||||
```bash
|
||||
# 查看 Git 版本
|
||||
git --version
|
||||
# 您应该看到类似如下输出👇
|
||||
# git version 2.35.1.windows.2
|
||||
|
||||
# 查看 MySQL 版本(如果 MySQL 的 bin 目录没有配在环境变量中,则需要先 cd 切换到 bin 目录下)
|
||||
mysql --version
|
||||
# 您应该看到类似如下输出👇
|
||||
# mysql Ver 8.0.12 for Win64 on x86_64 (MySQL Community Server - GPL)
|
||||
|
||||
# 查看 JDK 版本
|
||||
java -version
|
||||
# 您应该看到类似如下输出👇
|
||||
# openjdk version "11" 2018-09-25
|
||||
# OpenJDK Runtime Environment 18.9 (build 11+28)
|
||||
# OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
|
||||
|
||||
# 查看 Maven 版本
|
||||
mvn -v
|
||||
# 您应该看到类似如下输出👇
|
||||
# Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f)
|
||||
# Maven home: xxxxxx\apache-maven-3.6.3\bin\..
|
||||
# Java version: 11, vendor: Oracle Corporation, runtime: xxxxxx\openjdk-11
|
||||
# Default locale: zh_CN, platform encoding: GBK
|
||||
# OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"
|
||||
|
||||
# 查看 node 版本
|
||||
node -v
|
||||
# 您应该看到类似如下输出👇
|
||||
# v14.18.0
|
||||
|
||||
# 查看 npm 版本
|
||||
npm -v
|
||||
# 您应该看到类似如下输出👇
|
||||
# 8.19.2
|
||||
|
||||
# 查看 cnpm 版本
|
||||
cnpm -v
|
||||
# 您应该看到类似如下输出👇
|
||||
# cnpm@8.4.0 (C:\Users\Coz\AppData\Roaming\npm\node_modules\cnpm\lib\parse_argv.js)
|
||||
# npm@8.19.2 (C:\Users\Coz\AppData\Roaming\npm\node_modules\cnpm\node_modules\npm\index.js)
|
||||
# node@14.18.0 (D:\Program\Development\Environment\nodejs\node.exe)
|
||||
# npminstall@6.5.2 (C:\Users\Coz\AppData\Roaming\npm\node_modules\cnpm\node_modules\npminstall\lib\index.js)
|
||||
# prefix=C:\Users\Coz\AppData\Roaming\npm
|
||||
# win32 x64 10.0.22621
|
||||
# registry=https://registry.npmmirror.com
|
||||
```
|
||||
|
||||
|
||||
|
||||
## 配置国内镜像源
|
||||
|
||||
Maven 镜像源配置(下面以阿里云镜像为例,其他镜像可自行替换):
|
||||
|
||||
用编辑器打开 maven 目录下 conf/settings.xml 文件,找到如下位置,将 `<mirror></mirror>` 部分粘贴进去:
|
||||
|
||||
```xml
|
||||
<!-- mirrors
|
||||
| This is a list of mirrors to be used in downloading artifacts from remote repositories.
|
||||
|
|
||||
| It works like this: a POM may declare a repository to use in resolving certain artifacts.
|
||||
| However, this repository may have problems with heavy traffic at times, so people have mirrored
|
||||
| it to several places.
|
||||
|
|
||||
| That repository definition will have a unique id, so we can create a mirror reference for that
|
||||
| repository, to be used as an alternate download site. The mirror site will be the preferred
|
||||
| server for that repository.
|
||||
|-->
|
||||
<mirrors>
|
||||
<!-- mirror
|
||||
| Specifies a repository mirror site to use instead of a given repository. The repository that
|
||||
| this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
|
||||
| for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
|
||||
|
|
||||
<mirror>
|
||||
<id>mirrorId</id>
|
||||
<mirrorOf>repositoryId</mirrorOf>
|
||||
<name>Human Readable Name for this Mirror.</name>
|
||||
<url>http://my.repository.com/repo/path</url>
|
||||
</mirror>
|
||||
-->
|
||||
<!-- ######## 👇👇👇将以下部分粘贴进去👇👇👇 ######## -->
|
||||
<mirror>
|
||||
<id>alimaven</id>
|
||||
<name>aliyun maven</name>
|
||||
<url>https://maven.aliyun.com/repository/public</url>
|
||||
<mirrorOf>central</mirrorOf>
|
||||
</mirror>
|
||||
<!-- ######## 👆👆👆将以上部分粘贴进去👆👆👆 ######## -->
|
||||
</mirrors>
|
||||
```
|
||||
|
||||
npm 镜像源配置(下面以淘宝镜像为例,其他镜像可自行替换):
|
||||
|
||||
```bash
|
||||
# 配置镜像源
|
||||
npm config set registry https://registry.npm.taobao.org/
|
||||
# 配置后可通过以下命令查看是否配置成功
|
||||
npm config get registry
|
||||
```
|
||||
|
@@ -1,7 +0,0 @@
|
||||
## 其他的一些技术无关内容
|
||||
|
||||
系统图标,系统名称
|
||||
|
||||
系统登录界面可以展示的一些口号:
|
||||
|
||||
数据日更新,问题不过夜
|
34
docs/Reference.md
Normal file
34
docs/Reference.md
Normal file
@@ -0,0 +1,34 @@
|
||||
小程序:https://github.com/HolyShiftt/school
|
||||
|
||||
|
||||
|
||||
可以参考的一些:
|
||||
|
||||
(附源码)springboot社区疫情防控管理系统 毕业设计 164621:https://blog.csdn.net/WeiXin_DZbishe/article/details/127091024 (https://blog.csdn.net/Q_3461074420/article/details/127100890)
|
||||
|
||||
【原创】基于JavaWeb的社区疫情防控管理系统(疫情防控管理系统毕业设计):https://blog.csdn.net/qq_59059632/article/details/127080812
|
||||
|
||||
基于springboot社区疫情防控管理系统:https://blog.csdn.net/weixin_46437112/article/details/121885311
|
||||
|
||||
|
||||
|
||||
疫情防控系统:http://chisc.net/CIOjulebu/dianxinganli/2020-01-31/3883.html
|
||||
|
||||
科技防疫——社区疫情防控平台:https://zhuanlan.zhihu.com/p/108992875
|
||||
|
||||
【附源码】计算机毕业设计SSM社区疫情防控监管系统:https://blog.csdn.net/bishe409/article/details/127413536
|
||||
|
||||
智慧社区防疫管理信息化系统功能清单及价格:https://www.deerpu.cn/soft-1860.html https://www.deerpu.cn/softPrice-1860.html
|
||||
|
||||
网格化社区疫情防控系统建设方案(全国版:云端接入):http://www.egova.com.cn/web/pdf/%E7%BD%91%E6%A0%BC%E5%8C%96%E7%96%AB%E6%83%85%E9%98%B2%E6%8E%A7%E7%B3%BB%E7%BB%9F%E6%96%B9%E6%A1%88(%E5%85%A8%E5%9B%BD%E7%89%88)-0207.pdf
|
||||
|
||||
|
||||
|
||||
基于Java+SpringBoot+vue+elementui社区疫情防控系统详细设计实现:https://blog.51cto.com/u_14304894/5578744
|
||||
|
||||
【计算机毕业设计】java ssm社区(小区)疫情防控系统:https://blog.csdn.net/qq_15801219/article/details/124359029
|
||||
|
||||
【计算机毕业设计】疫情社区管理系统的设计与实现 (新增-健康打卡):https://blog.csdn.net/newuserphb/article/details/124490818
|
||||
|
||||
基于社区的疫情防控系统的设计与实现:https://wenku.baidu.com/view/e9d96532874769eae009581b6bd97f192279bf18.html
|
||||
|
81
docs/RelatedLinks.md
Normal file
81
docs/RelatedLinks.md
Normal file
@@ -0,0 +1,81 @@
|
||||
## 相关链接
|
||||
|
||||
### 后端
|
||||
|
||||
#### JDK
|
||||
|
||||
OpenJDK:https://openjdk.org/
|
||||
|
||||
Java SE 11:https://jdk.java.net/java-se-ri/11
|
||||
|
||||
#### Spring
|
||||
|
||||
Spring Cloud官网:https://spring.io/projects/spring-cloud
|
||||
|
||||
Spring Cloud Alibaba GitHub repo:https://github.com/alibaba/spring-cloud-alibaba
|
||||
|
||||
Spring initializr:https://start.spring.io/
|
||||
|
||||
https://start.spring.io/#!type=maven-project&language=java&platformVersion=2.7.5&packaging=jar&jvmVersion=11&groupId=com.cxyxiaomo&artifactId=entrance&name=Epidemic%20prevention%20platform&description=&packageName=com.cxyxiaomo.entrance&dependencies=lombok,mysql,mybatis
|
||||
|
||||
##### Gateway
|
||||
|
||||
B站教程:https://www.bilibili.com/video/BV1JB4y1F7aL
|
||||
|
||||
#### Maven
|
||||
|
||||
MVN REPOSITORY:https://mvnrepository.com/
|
||||
|
||||
#### Nacos
|
||||
|
||||
Quick Start:https://nacos.io/zh-cn/docs/v2/quickstart/quick-start.html
|
||||
|
||||
|
||||
|
||||
### 前端
|
||||
|
||||
#### Element Plus
|
||||
|
||||
Element Plus官网:https://element-plus.gitee.io/zh-CN/
|
||||
|
||||
安装:https://element-plus.gitee.io/zh-CN/guide/installation.html
|
||||
|
||||
#### Ant Design
|
||||
|
||||
Ant Design of Vue:https://www.antdv.com/docs/vue/introduce
|
||||
|
||||
|
||||
|
||||
### 小程序端
|
||||
|
||||
#### Taro
|
||||
|
||||
Taro:https://docs.taro.zone/docs
|
||||
|
||||
#### 微信小程序
|
||||
|
||||
开发文档:https://developers.weixin.qq.com/miniprogram/dev/framework/
|
||||
|
||||
#### 支付宝小程序
|
||||
|
||||
开发文档:https://opendocs.alipay.com/mini/developer/getting-started
|
||||
|
||||
支付宝开放平台:https://open.alipay.com/develop/manage
|
||||
|
||||
支付宝沙箱应用:https://open.alipay.com/develop/sandbox/app
|
||||
|
||||
支付宝沙箱应用 - 文档:https://opendocs.alipay.com/common/02kkv7
|
||||
|
||||
|
||||
|
||||
### Electron
|
||||
|
||||
开发文档:https://www.electronjs.org/docs/latest/tutorial/quick-start
|
||||
|
||||
Electron Forge打包时的一些常见问题:https://blog.csdn.net/qq_49700358/article/details/126531158
|
||||
|
||||
打包:https://www.electronjs.org/docs/latest/tutorial/tutorial-packaging
|
||||
|
||||
#### cnpm
|
||||
|
||||
npmmirror 中国镜像站:https://npmmirror.com/
|
@@ -1,5 +1,11 @@
|
||||
## 开发步骤记录
|
||||
|
||||
## 文件名大小写敏感
|
||||
|
||||
```bash
|
||||
git config core.ignorecase false
|
||||
```
|
||||
|
||||
### 前端
|
||||
|
||||
#### 初始化Element-plus项目
|
||||
@@ -50,6 +56,6 @@ vue ui
|
||||
|
||||
```bash
|
||||
cnpm install --save-dev electron
|
||||
cnpm install --save-dev @electron-forge/cli
|
||||
cnpm install --save-dev @electron-forge/cli
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user