26afd30e84
- 添加 Go 后端实现,包括配置管理、文件上传逻辑和 Wails 应用接口 - 实现前端 Vue 界面,提供服务器配置、目录选择、上传控制等功能 - 集成 Element Plus 组件库构建用户界面 - 添加文件上传进度显示和实时日志输出功能 - 实现后台文件监控和上传任务管理 - 配置 Wails 框架支持前后端交互 - 更新项目依赖,移除 Fyne 框架,集成 Wails v2 - 添加项目配置文件管理和自动保存功能
35 lines
1.6 KiB
Markdown
35 lines
1.6 KiB
Markdown
# Build Directory
|
|
|
|
The build directory is used to house all the build files and assets for your application.
|
|
|
|
The structure is:
|
|
|
|
* bin - Output directory
|
|
* darwin - macOS specific files
|
|
* windows - Windows specific files
|
|
|
|
## Mac
|
|
|
|
The `darwin` directory holds files specific to Mac builds.
|
|
These may be customised and used as part of the build. To return these files to the default state, simply delete them
|
|
and
|
|
build with `wails build`.
|
|
|
|
The directory contains the following files:
|
|
|
|
- `Info.plist` - the main plist file used for Mac builds. It is used when building using `wails build`.
|
|
- `Info.dev.plist` - same as the main plist file but used when building using `wails dev`.
|
|
|
|
## Windows
|
|
|
|
The `windows` directory contains the manifest and rc files used when building with `wails build`.
|
|
These may be customised for your application. To return these files to the default state, simply delete them and
|
|
build with `wails build`.
|
|
|
|
- `icon.ico` - The icon used for the application. This is used when building using `wails build`. If you wish to
|
|
use a different icon, simply replace this file with your own. If it is missing, a new `icon.ico` file
|
|
will be created using the `appicon.png` file in the build directory.
|
|
- `installer/*` - The files used to create the Windows installer. These are used when building using `wails build`.
|
|
- `info.json` - Application details used for Windows builds. The data here will be used by the Windows installer,
|
|
as well as the application itself (right click the exe -> properties -> details)
|
|
- `wails.exe.manifest` - The main application manifest file. |