Skip to content

Commit c792d2c

Browse files
committed
bug修复
1 parent e3f6193 commit c792d2c

29 files changed

+234
-215
lines changed

.idea/workspace.xml

Lines changed: 39 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.mvn/wrapper/MavenWrapperDownloader.java

Lines changed: 0 additions & 114 deletions
This file was deleted.

.mvn/wrapper/maven-wrapper.jar

-47.2 KB
Binary file not shown.

.mvn/wrapper/maven-wrapper.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM openjdk:8-jre-alpine
2+
LABEL maintainer="[email protected]"
3+
4+
ADD dbys.jar /bin/app/dbys.jar
5+
ADD /lib /bin/app/lib
6+
CMD exec java -Dloader.path="/bin/app/lib" -jar /bin/app/dbys.jar

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
以及它的[子项目](https://github.com/danbai225/dbyswebapp)基于Vue+Element-ui实现手机端
99
以及它的[子项目](https://github.com/danbai225/dbysapp)安卓端
1010
以及它的[子项目](https://github.com/danbai225/dbys_flutter)Flutter实现
11-
![](https://img.shields.io/badge/%E7%89%88%E6%9C%AC-1.1-blue)
11+
![](https://img.shields.io/badge/%E7%89%88%E6%9C%AC-1.1.1-blue)
1212
![](https://img.shields.io/badge/完善维护-brightgreen)
1313

1414
[线上地址](https://dbys.vip)

pom.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com.danbai</groupId>
1212
<artifactId>ys</artifactId>
13-
<version>1.1.0</version>
13+
<version>1.1.1</version>
1414
<name>ys</name>
1515
<description>Demo project for Spring Boot</description>
1616
<properties>
@@ -133,7 +133,16 @@
133133
</dependency>
134134
</dependencies>
135135
<build>
136+
<finalName>dbys</finalName>
136137
<plugins>
138+
<plugin>
139+
<groupId>org.apache.maven.plugins</groupId>
140+
<artifactId>maven-surefire-plugin</artifactId>
141+
<version>2.5</version>
142+
<configuration>
143+
<skipTests>true</skipTests>
144+
</configuration>
145+
</plugin>
137146
<plugin>
138147
<groupId>org.springframework.boot</groupId>
139148
<artifactId>spring-boot-maven-plugin</artifactId>
@@ -178,6 +187,9 @@
178187
</dependency>
179188
</dependencies>
180189
</plugin>
190+
191+
192+
181193
</plugins>
182194
</build>
183195

py/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM python:3.8
2+
3+
LABEL maintainer="[email protected]"
4+
COPY . /pa
5+
RUN pip install -r /pa/requirements.txt
6+
CMD ["sh", "/pa/run.sh"]

py/requirements.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
requests==2.23.0
2+
DBUtils==1.3
3+
lxml==4.5.0
4+
PyMySQL==0.9.3
5+
redis==3.4.1

py/run.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
echo "开始运行"
3+
python3 /pa/pa.py & python3 /pa/gxpa.py & python3 /pa/tagpa.py

0 commit comments

Comments
 (0)