-
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.
Document How to Build for Linux & macOS
- Loading branch information
Showing
2 changed files
with
32 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,39 @@ | ||
# RDS Manager | ||
Provides a simple way to get password to AWS RDS instances in form of Electron app. | ||
|
||
# How to install? | ||
# How to install | ||
|
||
```sh | ||
-> yarn install | ||
-> yarn start | ||
``` | ||
|
||
# How to build? (TODO) | ||
# How to contribute? (TODO) | ||
# How to build | ||
|
||
## With an ARM chip ("M1 Mac") | ||
|
||
### Build for Mac | ||
|
||
```shell | ||
yarn make -p darwin -a x64 | ||
yarn make -p darwin -a arm64 | ||
``` | ||
|
||
### Build for Linux | ||
|
||
You might need to install some extra packages: | ||
```shell | ||
brew install dpkg | ||
brew install fakeroot | ||
brew install rpm | ||
``` | ||
|
||
then | ||
```shell | ||
yarn make -p linux -a x64 | ||
yarn make -p linux -a arm64 | ||
``` | ||
|
||
# How to contribute | ||
* Open an issue to start a conversation | ||
* Open a pull request |
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 |
---|---|---|
|
@@ -43,7 +43,8 @@ | |
{ | ||
"name": "@electron-forge/maker-zip", | ||
"platforms": [ | ||
"darwin" | ||
"darwin", | ||
"linux" | ||
] | ||
}, | ||
{ | ||
|