Skip to content

Commit 61131fa

Browse files
committed
delete content folder && rename front-end to front-end-spring
1 parent 34ff42b commit 61131fa

112 files changed

Lines changed: 61 additions & 882 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,23 @@
3434
/server-springBoot/src/main/docker/*.jar
3535

3636
# front-end
37-
/front-end/.DS_Store
38-
/front-end/node_modules/
39-
/front-end/dist/
40-
/front-end/npm-debug.log*
41-
/front-end/yarn-debug.log*
42-
/front-end/yarn-error.log*
43-
/front-end/test/unit/coverage/
37+
/front-end-spring/.DS_Store
38+
/front-end-spring/node_modules/
39+
/front-end-spring/dist/
40+
/front-end-spring/npm-debug.log*
41+
/front-end-spring/yarn-debug.log*
42+
/front-end-spring/yarn-error.log*
43+
/front-end-spring/test/unit/coverage/
4444

4545
# Editor directories and files
46-
/front-end/.idea
47-
/front-end/.vscode
48-
/front-end/*.suo
49-
/front-end/*.ntvs*
50-
/front-end/*.njsproj
51-
/front-end/*.sln
46+
/front-end-spring/.idea
47+
/front-end-spring/.vscode
48+
/front-end-spring/*.suo
49+
/front-end-spring/*.ntvs*
50+
/front-end-spring/*.njsproj
51+
/front-end-spring/*.sln
5252

53-
/front-end/*.old
53+
/front-end-spring/*.old
5454

5555
# Server-Golang
5656
/server-golang/.vscode/

config/labelproject-golang.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
version: '3.3'
2+
services:
3+
db:
4+
container_name: mysql-golang
5+
image: danxing/mysql:latest
6+
environment:
7+
MYSQL_ROOT_PASSWORD: 123456
8+
networks:
9+
extnetwork-2:
10+
ipv4_address: 172.24.0.2
11+
volumes:
12+
- "/home/xingzheng/data/mysql/data2:/var/lib/mysql:rw"
13+
ports:
14+
- 3307:3306
15+
16+
cache:
17+
container_name: redis-golang
18+
image: redis:3.2
19+
command: redis-server
20+
networks:
21+
extnetwork-2:
22+
ipv4_address: 172.24.0.3
23+
web:
24+
container_name: labelproject-back-golang
25+
image: labelproject-back-gin:1.0.0
26+
networks:
27+
extnetwork-2:
28+
ipv4_address: 172.24.0.4
29+
volumes:
30+
- "/home/xingzheng/data/labelproject/home2:/home"
31+
ports:
32+
- 9998:5556
33+
# web-fore:
34+
# container_name: labelproject-fore-jave
35+
# image: labelproject-fore-spring:latest
36+
# networks:
37+
# extnetwork:
38+
# ipv4_address: 172.21.0.5
39+
# ports:
40+
# - 8889:80
41+
42+
43+
networks:
44+
extnetwork-2:
45+
ipam:
46+
config:
47+
- subnet: 172.24.0.0/16

content/基础知识/Golang.md

Whitespace-only changes.

content/基础知识/Mysql.md

Whitespace-only changes.

content/基础知识/Network.md

Whitespace-only changes.

content/基础知识/Redis.md

Whitespace-only changes.

content/基础知识/SpringMVC.md

Whitespace-only changes.

content/实现/golangImplement.md

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

0 commit comments

Comments
 (0)