From 9e87d6dd10568841c68fabb37313f16fb8770958 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Mon, 31 Dec 2018 01:33:46 -0500 Subject: [PATCH] remove explicit initdb instructions from the docs --- README | 1 - README.md | 1 - docs/MANUAL.md | 22 ++++++++++------------ 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/README b/README index 2e3abe2d..fcaeac4a 100644 --- a/README +++ b/README @@ -34,7 +34,6 @@ To generate passwords for opers and connect passwords, you can use this command: Run these commands in order -- these will setup each section of the server: - $ oragono initdb $ oragono mkcerts $ oragono run diff --git a/README.md b/README.md index 93811b4b..6371e145 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,6 @@ Extract it into a folder, then run the following commands: ```sh cp oragono.yaml ircd.yaml vim ircd.yaml # modify the config file to your liking -oragono initdb oragono mkcerts ``` diff --git a/docs/MANUAL.md b/docs/MANUAL.md index a6aeb949..11c22edf 100644 --- a/docs/MANUAL.md +++ b/docs/MANUAL.md @@ -78,12 +78,11 @@ In this section, we'll explain how to install and use the Oragono IRC server. To get started with Oragono on Windows: 1. Make sure you have the [latest release](https://github.com/oragono/oragono/releases/latest) downloaded. -2. Extract the zip file to a folder. -3. Copy and rename `oragono.yaml` to `ircd.yaml`. -4. Open up `ircd.yaml` using any text editor, and then save it once you're happy. -5. Open up a `cmd.exe` window, then `cd` to where you have Oragono extracted. -6. Run `oragono.exe initdb` (this creates the database). -7. Run `oragono.exe mkcerts` if you want to generate new self-signed SSL/TLS certificates (note that you can't enable STS if you use self-signed certs). +1. Extract the zip file to a folder. +1. Copy and rename `oragono.yaml` to `ircd.yaml`. +1. Open up `ircd.yaml` using any text editor, and then save it once you're happy. +1. Open up a `cmd.exe` window, then `cd` to where you have Oragono extracted. +1. Run `oragono.exe mkcerts` if you want to generate new self-signed SSL/TLS certificates (note that you can't enable STS if you use self-signed certs). To start the server, type `oragono.exe run` and hit enter, and the server should start! @@ -93,12 +92,11 @@ To start the server, type `oragono.exe run` and hit enter, and the server should To get started with Oragono on macOS, Linux, or on a Raspberry Pi: 1. Make sure you have the [latest release](https://github.com/oragono/oragono/releases/latest) for your OS/distro downloaded. -2. Extract the tar.gz file to a folder. -3. Copy and rename `oragono.yaml` to `ircd.yaml`. -4. Open up `ircd.yaml` using any text editor, and then save it once you're happy. -5. Open up a Terminal window, then `cd` to where you have Oragono extracted. -6. Run `./oragono initdb` (this creates the database). -7. Run `./oragono mkcerts` if you want to generate new self-signed SSL/TLS certificates (note that you can't enable STS if you use self-signed certs). +1. Extract the tar.gz file to a folder. +1. Copy and rename `oragono.yaml` to `ircd.yaml`. +1. Open up `ircd.yaml` using any text editor, and then save it once you're happy. +1. Open up a Terminal window, then `cd` to where you have Oragono extracted. +1. Run `./oragono mkcerts` if you want to generate new self-signed SSL/TLS certificates (note that you can't enable STS if you use self-signed certs). To start the server, type `./oragono run` and hit enter, and the server should be ready to use!