Browse Source

remove explicit initdb instructions from the docs

tags/v1.0.0-rc1
Shivaram Lingamneni 5 years ago
parent
commit
9e87d6dd10
3 changed files with 10 additions and 14 deletions
  1. 0
    1
      README
  2. 0
    1
      README.md
  3. 10
    12
      docs/MANUAL.md

+ 0
- 1
README View File

@@ -34,7 +34,6 @@ To generate passwords for opers and connect passwords, you can use this command:
34 34
 
35 35
 Run these commands in order -- these will setup each section of the server:
36 36
 
37
-    $ oragono initdb
38 37
     $ oragono mkcerts
39 38
     $ oragono run
40 39
 

+ 0
- 1
README.md View File

@@ -43,7 +43,6 @@ Extract it into a folder, then run the following commands:
43 43
 ```sh
44 44
 cp oragono.yaml ircd.yaml
45 45
 vim ircd.yaml  # modify the config file to your liking
46
-oragono initdb
47 46
 oragono mkcerts
48 47
 ```
49 48
 

+ 10
- 12
docs/MANUAL.md View File

@@ -78,12 +78,11 @@ In this section, we'll explain how to install and use the Oragono IRC server.
78 78
 To get started with Oragono on Windows:
79 79
 
80 80
 1. Make sure you have the [latest release](https://github.com/oragono/oragono/releases/latest) downloaded.
81
-2. Extract the zip file to a folder.
82
-3. Copy and rename `oragono.yaml` to `ircd.yaml`.
83
-4. Open up `ircd.yaml` using any text editor, and then save it once you're happy.
84
-5. Open up a `cmd.exe` window, then `cd` to where you have Oragono extracted.
85
-6. Run `oragono.exe initdb` (this creates the database).
86
-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).
81
+1. Extract the zip file to a folder.
82
+1. Copy and rename `oragono.yaml` to `ircd.yaml`.
83
+1. Open up `ircd.yaml` using any text editor, and then save it once you're happy.
84
+1. Open up a `cmd.exe` window, then `cd` to where you have Oragono extracted.
85
+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).
87 86
 
88 87
 To start the server, type `oragono.exe run` and hit enter, and the server should start!
89 88
 
@@ -93,12 +92,11 @@ To start the server, type `oragono.exe run` and hit enter, and the server should
93 92
 To get started with Oragono on macOS, Linux, or on a Raspberry Pi:
94 93
 
95 94
 1. Make sure you have the [latest release](https://github.com/oragono/oragono/releases/latest) for your OS/distro downloaded.
96
-2. Extract the tar.gz file to a folder.
97
-3. Copy and rename `oragono.yaml` to `ircd.yaml`.
98
-4. Open up `ircd.yaml` using any text editor, and then save it once you're happy.
99
-5. Open up a Terminal window, then `cd` to where you have Oragono extracted.
100
-6. Run `./oragono initdb` (this creates the database).
101
-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).
95
+1. Extract the tar.gz file to a folder.
96
+1. Copy and rename `oragono.yaml` to `ircd.yaml`.
97
+1. Open up `ircd.yaml` using any text editor, and then save it once you're happy.
98
+1. Open up a Terminal window, then `cd` to where you have Oragono extracted.
99
+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).
102 100
 
103 101
 To start the server, type `./oragono run` and hit enter, and the server should be ready to use!
104 102
 

Loading…
Cancel
Save