mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
Bumped version, updated README
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# [cowyo.com](http://cowyo.com/)
|
# [cowyo.com](http://cowyo.com/)
|
||||||
|
|
||||||
[]() [](https://goreportcard.com/report/github.com/schollz/cowyo) [](https://gitter.im/schollz/cowyo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
[]() [](https://goreportcard.com/report/github.com/schollz/cowyo) [](https://gitter.im/schollz/cowyo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||||
|
|
||||||
This is a self-contained notepad webserver that makes sharing easy and _fast_. The most important feature here is *simplicity*. There are many other features as well including versioning, page locking, self-destructing messages, encryption, math support, and listifying. Read on to learn more about the features.
|
This is a self-contained notepad webserver that makes sharing easy and _fast_. The most important feature here is *simplicity*. There are many other features as well including versioning, page locking, self-destructing messages, encryption, math support, and listifying. Read on to learn more about the features.
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# CowYo
|
# CowYo
|
||||||
## Collections of Organized Words You Open
|
## Collections of Organized Words You Open
|
||||||

|

|
||||||
|
|
||||||
This is a self-contained wiki webserver that makes sharing easy and _fast_. The most important feature here is *simplicity*. There are many other features as well including versioning, page locking, self-destructing messages, encryption, math support, and listifying. Read on to learn more about the features. **CowYo** is also [Open Source](https://github.com/schollz/cowyo).
|
This is a self-contained wiki webserver that makes sharing easy and _fast_. The most important feature here is *simplicity*. There are many other features as well including versioning, page locking, self-destructing messages, encryption, math support, and listifying. Read on to learn more about the features. **CowYo** is also [Open Source](https://github.com/schollz/cowyo).
|
||||||
|
|
||||||
@@ -45,6 +45,24 @@ This is a self-contained wiki webserver that makes sharing easy and _fast_. The
|
|||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
**CLI support**. Want to upload/download from a server? Its super easy. Upload/download files like this:
|
||||||
|
```bash
|
||||||
|
$ echo "Hello, world!" > hi.txt
|
||||||
|
$ curl --upload-file hi.txt cowyo.com
|
||||||
|
File uploaded to http://cowyo.com/hi.txt
|
||||||
|
$ curl cowyo.com/test.txt
|
||||||
|
Hello, world!
|
||||||
|
```
|
||||||
|
or just skip the file-creation step,
|
||||||
|
```bash
|
||||||
|
$ echo "Wow, so easy" | curl --upload-file "-" cowyo.com
|
||||||
|
File uploaded to http://cowyo.com/CautiousCommonLoon
|
||||||
|
$ curl cowyo.com/CautiousCommonLoon
|
||||||
|
Wow, so easy
|
||||||
|
```
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
**Keyboard Shortcuts**. Quickly transition between Edit/View/List by using `Ctl+Shift+E` to Edit, `Ctl+Shift+Z` to View, and `Ctl+Shift+L` to Listify.
|
**Keyboard Shortcuts**. Quickly transition between Edit/View/List by using `Ctl+Shift+E` to Edit, `Ctl+Shift+Z` to View, and `Ctl+Shift+L` to Listify.
|
||||||
|
|
||||||
**Admin controls**. The Admin can view/delete all the documents by setting the `-a YourAdminKey` when starting the program. Then the admin has access to the `/ls/YourAdminKey` to view and delete any of the pages.
|
**Admin controls**. The Admin can view/delete all the documents by setting the `-a YourAdminKey` when starting the program. Then the admin has access to the `/ls/YourAdminKey` to view and delete any of the pages.
|
||||||
|
|||||||
Reference in New Issue
Block a user