1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
Go to file
Zack Scholl 4f737903ee Update nginx to allow serving static
Former-commit-id: f37b6f5c186cb2e0c279dcfcaba614213e7e767c [formerly 186eb40e1c86dcb4395db1b15ee6a14212eda1fb] [formerly b3cb7de1d72a9032836c25ab5c4dd5d407b1bd8e [formerly 5c2eb2ad46344d8df414762fcb1bfbb042b825d0 [formerly 02e7e1a145]]]
Former-commit-id: b7c726ae0b4c7c46ce574830e237e0f4739260b5 [formerly 4b9b078dfb12f6e8610787215efa8a29d7b596fb]
Former-commit-id: 170cbdde60c254717ad21a964e0c07c9d2c110e3
Former-commit-id: bc647f99ba
2016-02-08 10:31:33 -05:00
install Update nginx to allow serving static 2016-02-08 10:31:33 -05:00
ssl enable TLS as option 2016-02-07 10:20:41 -08:00
static Fixed folders for static 2016-02-08 10:10:48 -05:00
templates not Using CDN 2016-02-08 10:27:44 -05:00
.gitignore Initial commit 2016-02-06 08:28:40 -05:00
db.go Loads current text statically. Faster loading 2016-02-08 08:37:22 -05:00
LICENSE Initial commit 2016-02-06 08:28:40 -05:00
main.go Fixed folders for static 2016-02-08 10:03:00 -05:00
README.md Updated readme with go install 2016-02-08 09:58:15 -05:00
routes.go Fixed folders for static 2016-02-08 10:05:23 -05:00
utils.go Storing DIffs now...might not be compatible? 2016-02-07 18:31:47 -05:00
websockets.go Removed case senstivity from savin 2016-02-08 01:37:46 +00:00

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 / 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). No need to press save, it will automatically save when you stop writing.

You can also write your notes in Markdown and then render your page by adding /view. For example, the page /about is rendered at /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, goto /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.

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.

Powered by Raspberry Pi and Go Raspberry Pi Go Mascot

Install

go install 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")```