forked from Jigsaw-Code/outline-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
116 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Outline Manager | ||
|
||
## Running | ||
|
||
To run the Outline Manager: | ||
``` | ||
yarn do server_manager/electron_app/run | ||
``` | ||
|
||
## Packaging | ||
|
||
To build the app binary: | ||
``` | ||
yarn do server_manager/electron_app/package_${PLATFORM} | ||
``` | ||
|
||
Where `${PLATFORM}` is one of `linux`, `macos`, `only_windows`. | ||
|
||
The per-platform standalone apps will be at `build/electron_app/static/dist`. | ||
|
||
- Windows: zip files. Only generated if you have [wine](https://www.winehq.org/download) installed. | ||
- Linux: tar.gz files. | ||
- macOS: dmg files if built from macOS, zip files otherwise. | ||
|
||
## Releases | ||
|
||
To perform a release, use | ||
``` | ||
yarn do server_manager/electron_app/release | ||
``` | ||
|
||
This will perform a clean and reinstall all dependencies to make sure the build is not tainted. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters