mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
cae04dea76
Former-commit-id: 56a74d20f5fa99a6a0757ad843c497ed335f4688 [formerly 9e39ea29abfe884f572a9f5e495b108048e7b8e1] [formerly a0b61ce51909e3cd0164b54b1fd25a6689f890b5 [formerly f0d1680963
]]
Former-commit-id: 09dd6bdebc56bd3d052dab46969f799c643d62ee [formerly 499319ff6f133b42c92393fb62732a4d91cc63ad]
Former-commit-id: b3b2ebeed9b470ed707f3ec1d64719eebafdd652
48 lines
2.6 KiB
Markdown
48 lines
2.6 KiB
Markdown
# Cowyo...
|
|
|
|
_...is the Collection of Online Words You Open._
|
|
|
|
This tool is supposed to make sharing online notes and lists fast and easy. To jot a note, simply load the page at [`/`](http://cowyo.com/) and write. The url will redirect to an easy-to-remember name that you can use to reload the page at anytime, anywhere. (You can use any url you want too: [`/AnythingYouWant`](http://cowyo.com/AnythingYouWant)). No need to press save, it will automatically save when you stop writing.
|
|
|
|
You can also write your notes in [Markdown](https://daringfireball.net/projects/markdown/) and then render your page by adding `/view`. For example, the page `/about` is rendered at [`/about/view`](/about/view). _Coming soon: To lock your page, simply add a line with `<user=yourname password=123 public=true>`. This will signal the server to always redirect to `/view`, but will allow one to edit with the correct password. If `public` is set to `false` then the server will also require a password for `/view`._
|
|
|
|
If you are writing a list and you want to tick off things really easily, just add `/list`. For example, after editing [`/grocery`](http://cowyo.com/grocery), goto [`/grocery/list`](http://cowyo.com/grocery/list). In this page, whatever you click on will be striked through and moved to the end. This is helpful if you write a grocery list and then want to easily delete things from it.
|
|
|
|
Math is supported using [Katex](https://github.com/Khan/KaTeX).
|
|
|
|
Be cautious about writing sensitive information in the notes as anyone with the URL has access to it. For more information, or if you'd like to edit the code, [use the github](https://github.com/schollz/cowyo).
|
|
|
|
**Powered by Raspberry Pi and Go** ![Raspberry Pi](http://cowyo.com/static/img/raspberrypi.png) ![Go Mascot](http://cowyo.com/static/img/gomascot.png)
|
|
|
|
# Install
|
|
|
|
`go install github.com/schollz/cowyo`
|
|
|
|
## Production server
|
|
|
|
I recommend using `NGINX` as middleware, as it will do caching of the static files for you. There is an example `NGINX` block in `install/`.
|
|
|
|
# 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")```
|
|
```
|