diff options
| author | Tomo Ueda <[email protected]> | 2021-09-02 12:54:43 -0700 |
|---|---|---|
| committer | Tomo Ueda <[email protected]> | 2021-09-02 12:54:43 -0700 |
| commit | f5c716526aaafb318a98e974c8b2fbe02870646b (patch) | |
| tree | e14145656fcff86ec2c7a1ecf4ad28e0b40f36aa /doc/build-osx.md | |
| parent | s/DOGE/DIS/g (diff) | |
| download | discoin-f5c716526aaafb318a98e974c8b2fbe02870646b.tar.xz discoin-f5c716526aaafb318a98e974c8b2fbe02870646b.zip | |
really s/doge/dis/g this time
Diffstat (limited to 'doc/build-osx.md')
| -rw-r--r-- | doc/build-osx.md | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/doc/build-osx.md b/doc/build-osx.md index 97536bbea..144191bdd 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -28,14 +28,14 @@ NOTE: Building with Qt4 is still supported, however, could result in a broken UI Build Dogecoin Core ------------------------ -1. Clone the dogecoin source code and cd into `dogecoin` +1. Clone the discoin source code and cd into `discoin` - git clone https://github.com/dogecoin/dogecoin - cd dogecoin + git clone https://github.com/discoin/discoin + cd discoin -2. Build dogecoin: +2. Build discoin: - Configure and build the headless dogecoin binaries as well as the GUI (if Qt is found). + Configure and build the headless discoin binaries as well as the GUI (if Qt is found). You can disable the GUI build by passing `--without-gui` to configure. @@ -54,15 +54,15 @@ Build Dogecoin Core Running ------- -Dogecoin Core is now available at `./src/dogecoind` +Dogecoin Core is now available at `./src/discoind` Before running, it's recommended you create an RPC configuration file. - echo -e "rpcuser=dogecoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Dogecoin/dogecoin.conf" + echo -e "rpcuser=discoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Dogecoin/discoin.conf" - chmod 600 "/Users/${USER}/Library/Application Support/Dogecoin/dogecoin.conf" + chmod 600 "/Users/${USER}/Library/Application Support/Dogecoin/discoin.conf" -The first time you run dogecoind, it will start downloading the blockchain. This process could take several hours. +The first time you run discoind, it will start downloading the blockchain. This process could take several hours. You can monitor the download process by looking at the debug.log file: @@ -71,20 +71,20 @@ You can monitor the download process by looking at the debug.log file: Other commands: ------- - ./src/dogecoind -daemon # Starts the dogecoin daemon. - ./src/dogecoin-cli --help # Outputs a list of command-line options. - ./src/dogecoin-cli help # Outputs a list of RPC commands when the daemon is running. + ./src/discoind -daemon # Starts the discoin daemon. + ./src/discoin-cli --help # Outputs a list of command-line options. + ./src/discoin-cli help # Outputs a list of RPC commands when the daemon is running. Using Qt Creator as IDE ------------------------ -You can use Qt Creator as an IDE, for dogecoin development. +You can use Qt Creator as an IDE, for discoin development. Download and install the community edition of [Qt Creator](https://www.qt.io/download/). Uncheck everything except Qt Creator during the installation process. 1. Make sure you installed everything through Homebrew mentioned above 2. Do a proper ./configure --enable-debug 3. In Qt Creator do "New Project" -> Import Project -> Import Existing Project -4. Enter "dogecoin-qt" as project name, enter src/qt as location +4. Enter "discoin-qt" as project name, enter src/qt as location 5. Leave the file selection as it is 6. Confirm the "summary page" 7. In the "Projects" tab select "Manage Kits..." @@ -97,4 +97,4 @@ Notes * Tested on OS X 10.8 through 10.12 on 64-bit Intel processors only. -* Building with downloaded Qt binaries is not officially supported. See the notes in [#7714](https://github.com/dogecoin/dogecoin/issues/7714) +* Building with downloaded Qt binaries is not officially supported. See the notes in [#7714](https://github.com/discoin/discoin/issues/7714) |