You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: BUILD_GUIDE.md
+11-4Lines changed: 11 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,12 +36,15 @@ Please choose the correct compilation command according to your platform for com
36
36
> The web desktop version is a standalone web application that can be run in a browser without installation. Simply execute the binary file in the command line to open the web application in your browser.
37
37
>
38
38
> It supports usage on platforms such as Linux, Windows, and macOS. You can deploy the web version to your local computer device or deploy it on a cloud server for use on any device.
39
+
>
39
40
40
41
- Execute `make build-web-platform` in the terminal.
41
-
- Execute the compiled binary file in the command line, for example:
42
-
- Execute `./bin/mywords-web-linux` on Linux.
43
-
- Execute `./bin/mywords-web-windows.exe` on Windows.
44
-
- Execute `./bin/mywords-web-macos` on MacOS.
42
+
- Execute the compiled binary file in the command line, for example:
43
+
- Execute `./bin/mywords-web-linux` on Linux.
44
+
- Execute `./bin/mywords-web-windows.exe` on Windows.
45
+
- Execute `./bin/mywords-web-macos` on MacOS.
46
+
- Execute `make build-web-termux` in the terminal to compile the web version for Termux on Android.
47
+
- Execute `./bin/mywords-web-termux` in the terminal to run the web version on Termux on Android.
45
48
- After execution, the browser will automatically open and access http://127.0.0.1:18960/web/ or the specified port number.
46
49
- Already integrated the web version in the mobile version, seamless learning between multiple devices.
47
50
@@ -53,4 +56,8 @@ Please choose the correct compilation command according to your platform for com
53
56
├── mywords-flutter # Directory for Flutter source code used to compile installation packages
54
57
├── Makefile # Makefile for the project
55
58
├── README.md # Project documentation
59
+
├── CHANGE_LOG.md # Project change log
60
+
├── BUILD_GUIDE.md # Project compilation guide
61
+
├── ADD_DICTIONARY_GUIDE.md # Guide for adding dictionaries
0 commit comments