1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Update README.md

Former-commit-id: 142d9e52505ebb82eb2dca6e2358b07671e09e9a [formerly aef9d274ebefcc239c450823bc10b66939c1249d] [formerly 15dd943218c7f0ceb3fbaac19221aa27aa5ec01b [formerly a82c8891489917115830ec2dce8f4c1df2306f52 [formerly 4d1de7a891]]]
Former-commit-id: e6f37ce2830807b5c494d8e287e9ef0c0a61eaf2 [formerly 63ba5cd0031e32133c4e81cf2b1cdd2102597c1b]
Former-commit-id: bbd2a40f3abd12fcd44a92beaee5e7b36b47d516
Former-commit-id: c62a533f04
This commit is contained in:
Zack 2016-02-07 22:01:26 -05:00
parent 171da3a0eb
commit 405e9dcf09

View File

@ -17,3 +17,27 @@ Be cautious about writing sensitive information in the notes as anyone with the
# Install # Install
`go get github.com/schollz/cowyo` `go get github.com/schollz/cowyo`
# Usage
```
$ ./cowyo --help
cowyo: a websocket notepad
run this to start the server and then visit localhost at the port you specify
(see parameters).
Example: 'cowyo localhost'
Example: 'cowyo -p :8080 localhost'
Example: 'cowyo -db /var/lib/cowyo/db.bolt localhost'
Example: 'cowyo -p :8080 -crt ssl/server.crt -key ssl/server.key localhost'
Options:
-crt string
location of ssl crt
-db string
location of database file (default "/home/mu/cowyo/data.db")
-httptest.serve string
if non-empty, httptest.NewServer serves on this address and blocks
-key string
location of ssl key
-p string
port to bind (default ":12312")```
```