mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Previously, start scripts were generated for both *nix and Windows platforms, resulting in an unnecessarily cluttered root directory. With this change, both types of script are still generated, but Windows .bat scripts are deleted immediately afterward if the user is running a non-Windows OS (unfortunately, there was no clean way to suppress the generation of these scripts in the Gradle StartScripts API). See #1956
33 lines
722 B
Markdown
33 lines
722 B
Markdown
# Building Bisq
|
|
|
|
_You will need [OpenJDK 10](https://jdk.java.net/10/) installed and set up as the default system JDK to complete the following instructions._
|
|
|
|
|
|
## Clone
|
|
|
|
git clone https://github.com/bisq-network/bisq
|
|
cd bisq
|
|
|
|
|
|
## Build
|
|
|
|
You do _not_ need to install Gradle to complete the following command. The `gradlew` shell script will install it for you if necessary.
|
|
|
|
./gradlew build
|
|
|
|
If on Windows use the `gradlew.bat` script instead.
|
|
|
|
|
|
## Run
|
|
|
|
Bisq executables are now available in the root project directory. Run Bisq Desktop as follows:
|
|
|
|
./bisq-desktop
|
|
|
|
If on Windows use the `bisq-desktop.bat` script instead.
|
|
|
|
|
|
## See also
|
|
|
|
- [idea-import.md](idea-import.md)
|
|
- [dev-setup.md](dev-setup.md)
|