Browse Source

readme: Update as recommended by @enckse

tags/v0.11.0
Daniel Oaks 6 years ago
parent
commit
391c6a8c31
1 changed files with 6 additions and 17 deletions
  1. 6
    17
      README.md

+ 6
- 17
README.md View File

@@ -47,8 +47,7 @@ oragono initdb
47 47
 oragono mkcerts
48 48
 ```
49 49
 
50
-**Note:** This installation will give you self-signed certificates suitable for testing purposes.
51
-For real certs, look into [Let's Encrypt](https://letsencrypt.org/)!
50
+**Note:** For setting up proper Let's Encrypt certificates, we've got [this manual entry](https://github.com/oragono/oragono/blob/master/docs/MANUAL.md#how-do-i-use-lets-encrypt-certificates).
52 51
 
53 52
 ### Platform Packages
54 53
 
@@ -70,27 +69,17 @@ The `stable` branch contains the latest release. You can run this for a producti
70 69
 
71 70
 [![Build Status](https://travis-ci.org/oragono/oragono.svg?branch=master)](https://travis-ci.org/oragono/oragono)
72 71
 
73
-Clone the appropriate branch. If necessary, do `git submodule update --init` to set up vendored dependencies. From the root folder, run `make` to generate all release files for all of our target OSes:
72
+Clone the appropriate branch. You should also run `git submodule update --init` to set up vendored dependencies.
73
+
74
+From the root folder, run `make` to generate all release files in `/dist` for all of our target OSes:
74 75
 ```
75 76
 make
76 77
 ```
77 78
 
78
-You can also only build the release files for a specific system:
79
-```
80
-# for windows
81
-make windows
82
-
83
-# for linux
84
-make linux
79
+Otherwise, if you'd like to manually build a very specific executable, you can run the typical `go build oragono.go` command.
85 80
 
86
-# for osx
87
-make osx
88
-
89
-# for arm6
90
-make arm6
91
-```
81
+However, when just developing I usually execute `go run oragono.go`. That rebuilds Oragono on the fly with the latest changes.
92 82
 
93
-Once you have made the release files, you can find them in the `build` directory. Uncompress these to an empty directory and continue as usual.
94 83
 
95 84
 ## Configuration
96 85
 

Loading…
Cancel
Save