Skip to content

Commit 052efaa

Browse files
authored
Merge pull request #1 from HackyleShawe/refactor-250601
merge refactor 250601 to master
2 parents f740771 + d2cdbd8 commit 052efaa

717 files changed

Lines changed: 31098 additions & 55058 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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
.idea
3+
*.iml
4+
5+
apache-tomcat-9.0.31
6+
res.hackyle.com
7+
nginx-1.20.2
8+
9+
*application-prod.yml
10+
11+
temp
12+
logs
13+
14+
# 排除所有.idea目录
15+
*.idea
16+
#排除所有target目录
17+
*target
18+
19+
# 排除vue相关目录
20+
*dist
21+
*node_modules

README.md

Lines changed: 0 additions & 334 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ENV = 'development'
44
# 配置文件的内容以键值对的形式,必须以"VUE_APP_"开头
55

66
# 项目使用的端口
7-
VUE_APP_PORT = 6201
7+
VUE_APP_PORT = 8000
88

99
# 后端的接口域
10-
VUE_APP_BACKEND_API = 'http://localhost:6101'
10+
VUE_APP_BACKEND_API = 'http://localhost:8100'

blog-admin-web/.env.production

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# just a flag,生产环境
2+
ENV = 'production'
3+
4+
# 配置文件的内容以键值对的形式,必须以"VUE_APP_"开头
5+
6+
# 项目使用的端口
7+
VUE_APP_PORT = 8000
8+
9+
# 后端的接口域
10+
# 注意:这里需要在nginx上配置
11+
VUE_APP_BACKEND_API = 'https://blog.hackyle.com/admin-api'
12+
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ENV = 'test'
55
# 测试环境如何打包:将以下内容复制到.env.production,执行"npm run build",完成打包后将.env.production改回来
66

77
# 项目使用的端口
8-
VUE_APP_PORT = 6201
8+
VUE_APP_PORT = 8000
99

1010
# 后端的接口域
1111
# 注意:这里需要在nginx上配置
12-
VUE_APP_BACKEND_API = 'http://localhost:6101'
12+
VUE_APP_BACKEND_API = 'http://localhost:8100'
1313

0 commit comments

Comments
 (0)