Skip to content
This repository has been archived by the owner on Apr 10, 2022. It is now read-only.

支持本地服务器上传apk #16

Open
wants to merge 8 commits into
base: 1.2.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
= 不再维护,最新更新请移步:https://github.com/zoeminghong/app-version

ifndef::imagesdir[:imagesdir: src/main/resources/images/]

image::logo.png[logo,200,200,align="center"]
Expand Down Expand Up @@ -56,6 +58,23 @@ link:src/main/asciidoc/_chapter/docker-manual.adoc[Docker 使用手册]
image::show1.png[]
image::show2.png[]


=== 合作项目

==== iOS 前端Swift一键使用

image::https://raw.githubusercontent.com/birdmichael/app-version-swift/master/show.png[]

* 一键配置
* 全截面自定义
* 自动版本比较
* 自动限制最低版本
* 自动维护每次弹出,弹出一次逻辑
* 配置文本框最大高度(默认不可滚动,不显示滚动条)

项目地址:https://github.com/birdmichael/app-version-swift


=== 答疑帮助

* 链接地址对的,但是请求返回 <没有权限访问该地址,请先登录> 提示信息?
Expand All @@ -68,6 +87,10 @@ image::show2.png[]

3、数据库表没有成功初始化

* OSS 跨域问题

https://help.aliyun.com/video_detail/39695.html?spm=5176.10695662.1996646101.searchclickresult.791c4a496p15UY

NOTE: 有时候邮件回复的不是那么及时,推荐微信。

微信: zoeminghong (备注:APP 管理系统)
Expand Down
2 changes: 1 addition & 1 deletion src/main/asciidoc/_chapter/get-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ cd web/dashboard
npm install

# 这里以生产为例,还存在 development、test、uat
npm build:production
npm run build:prod # 使用此命令,请修改.env.production文件中的配置
----
然后会在 dashboard 目录下生成一个 dist 文件夹,将文件夹下内容复制到 nginx 的 html 文件夹内。
参考以下内容配置你的 nginx 的 nginx.conf 文件。
Expand Down
2 changes: 1 addition & 1 deletion web/dashboard/.env.production
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 开发环境
NODE_ENV = "development"
NODE_ENV = "production"
VUE_APP_HTTP_TIMEOUT = 15000
VUE_APP_HTTP_API = "http://localhost:8088/manager"
VUE_APP_TITLE = "APP 管理平台 - 开发"
Expand Down
2 changes: 1 addition & 1 deletion web/dashboard/.env.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 开发环境
NODE_ENV = "development"
NODE_ENV = "test"
VUE_APP_HTTP_TIMEOUT = 15000
VUE_APP_HTTP_API = "http://localhost:8088/manager"
VUE_APP_TITLE = "APP 管理平台 - 开发"
Expand Down
2 changes: 1 addition & 1 deletion web/dashboard/.env.uat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 开发环境
NODE_ENV = "development"
NODE_ENV = "uat"
VUE_APP_HTTP_TIMEOUT = 15000
VUE_APP_HTTP_API = "http://localhost:8088/manager"
VUE_APP_TITLE = "APP 管理平台 - 开发"
Expand Down
Loading