瀏覽代碼

Update AutoInstall.md

Updates:
- Translatation to English
- Grammar Corrections
- Consistency updates for example: docker -> Docker & showdoc -> Showdoc
----------------------------------------------------------------------------------------
Possible corrections:
- Adding screenshots
- Possibly outdated instrcutions
- Add link to line 25 (re-download link)
Wesly Nouse 6 年之前
父節點
當前提交
c16a5aba58
共有 1 個文件被更改,包括 27 次插入27 次删除
  1. 27 27
      documentation/en/AutoInstall.md

+ 27 - 27
documentation/en/AutoInstall.md

@@ -1,66 +1,66 @@
-### 前言
- 自动脚本脚本利用docker来安装运行环境,适用于linux服务器。如果你的服务器没有docker服务,脚本会尝试安装之。安装docker的过程可能有些慢。如果你已经安装过docker,脚本会省略部分步骤,从而加快showdoc安装进度。
+### Foreword
+ The automatic script script uses Docker to install the runtime environment for Linux servers. If your server does not have a Docker service, the script will try to install it. The process of installing Docker may be a bit slow. If you have already installed docker, the script will omit some of the steps to speed up the ShowDoc installation.
  
-当脚本安装docker失败时,你可以手动安装好docker后再执行脚本 。若装好了docker后还是再失败,则可根据此教程一步步地安装和调试: https://www.showdoc.cc/help?page_id=65610
+When the script fails to install Docker, you can manually install Docker before executing the script. If you still have Docker installed, you can (un/re-)install and debug it step by step according to this tutorial: https://www.showdoc.cc/help?page_id=65610
 
-如果服务器系统本身不支持docker,则只能通过手动安装PHP环境的方式来运行showdoc:https://www.showdoc.cc/help?page_id=13732
+If the server system itself does not support Docker, you can only run ShowDoc by manually installing the PHP environment: https://www.showdoc.cc/help?page_id=13732
 
 
-### 使用方法
+### Instructions
 
 
  
  ```
-  #下载脚本并赋予权限
- wget https://www.showdoc.cc/script/showdoc;chmod +x showdoc;
+  # Download the script and give permission
+ Wget https://www.showdoc.cc/script/showdoc;chmod +x showdoc;
   
-  #默认安装中文版。如果想安装英文版,请加上en参数,如 ./showdoc en
+  # Default installation is the Chinese version. If you want to install the English version, please add the en parameter, such as ./showdoc en
   ./showdoc en
  
  ```
 
 
-### 安装后说明
+### Post-installation instructions
 
-安装好后,showdoc的数据都会存放在 /showdoc_data/html 目录下。./showdoc 脚本可放置在任何目录,方便以后使用。也可以重新从官方地址下载。
+Once installed, the ShowDoc data will be stored in the /showdoc_data/html directory. The ./showdoc script can be placed in any directory for later use. You can also re-download it from the official address.
 
-你可以打开 http://xxx.com:4999 来访问showdoc (xxx.com为你的服务器域名或者IP)。账户密码是showdoc/123456,登录后你便可以看到右上方的管理后台入口。建议登录后修改密码。
+You can open ShowDoc by opening http://your-domain.com:4999 (replace your-domain.com with your server domain name or IP-address). The default admin account is Username: showdoc Password: 123456 . After logging in, you can see the management background entry in the upper right. It is recommended to change the password after login.
 
-对showdoc的问题或建议请至https://github.com/star7th/showdoc 处提issue。
+For issues or suggestions on ShowDoc, please go to https://github.com/star7th/showdoc for an issue.
 
 
-### 从手动方式升级到自动脚本方式
-如果你之前是手动安装showdoc,可考虑升级到现在这种自动脚本方式。升级到脚本方式后,就可以使用上脚本的自动化功能 ,比如说升级到最新版,重启,卸载等。
-升级方法:
+### Upgrade from manual mode to automatic script mode
+If you have previously installed ShowDoc manually, consider upgrading to this automatic scripting method. After upgrading to the script mode, you can use the automation features of the script, such as upgrading to the latest version, restarting, uninstalling, and so on.
+Upgrade method:
 
-1,首先参考前文部分,在服务器全新安装一个showdoc
+1, First refer to the previous section (Post-installation instructions), then install ShowDoc on the server
 
-2,把原来showdoc目录的Sqlite/showdoc.db.php覆盖/showdoc_data/html/Sqlite/showdoc.db.php  ,Public/Uploads覆盖 /showdoc_data/html/Public/Uploads
+2, The original ShowDoc directory Sqlite / showdoc.db.php override /showdoc_data/html/Sqlite/showdoc.db.php, Public / Uploads override /showdoc_data/html/Public/Uploads
 
-3,执行命令
+3, Execute the command
 
  ```
- chmod 777 -R /showdoc_data/html
+ Chmod 777 -R /showdoc_data/html
  ./showdoc update
  ```
  
  
-### 其他命令
+### Other commands
 
  ```
  
- #下面附上脚本其他命令,以便管理showdoc时可以用得上。
+ # Attach the script to other commands, so you can use it when managing ShowDoc.
 
- #停止
- ./showdoc stop 
+ # Stop ShowDoc
+ ./showdoc stop
  
- #重启
+ # Restart ShowDoc
  ./showdoc restart
 
- #升级showdoc到最新版
+ # Update ShowDoc to the latest version
  ./showdoc update
   
- #卸载showdoc
+ # Uninstall ShowDoc
  ./showdoc uninstall
  
- ```
+ ```