mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
Bumped version, updated README
Former-commit-id: 28b93329d92d3d7d01ebdbb42b7d1c20f5fd0518 [formerly a70573f0f01d5151b5288bd289b399e098317c92] [formerly 33bc07777f90f36c3f9829f9e4971a5e3119cc55 [formerly a0c57004a8
]]
Former-commit-id: 570e2d901d8732cfc71ffbe95f18a91570e0d00a [formerly 52a740c2799400a2c12dcc1080cb60ca134ba6eb]
Former-commit-id: 7536551aa08126c773bad299754194c8f148adfb
This commit is contained in:
parent
920ba22309
commit
4d34638b81
@ -2,7 +2,7 @@
|
||||
|
||||
# [cowyo.com](http://cowyo.com/)
|
||||
|
||||
[![Version 0.95](https://img.shields.io/badge/version-0.94-brightgreen.svg)]() [![Go Report Card](https://goreportcard.com/badge/github.com/schollz/cowyo)](https://goreportcard.com/report/github.com/schollz/cowyo) [![Join the chat at https://gitter.im/schollz/cowyo](https://badges.gitter.im/schollz/cowyo.svg)](https://gitter.im/schollz/cowyo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
[![Version 0.95](https://img.shields.io/badge/version-0.95-brightgreen.svg)]() [![Go Report Card](https://goreportcard.com/badge/github.com/schollz/cowyo)](https://goreportcard.com/report/github.com/schollz/cowyo) [![Join the chat at https://gitter.im/schollz/cowyo](https://badges.gitter.im/schollz/cowyo.svg)](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.
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
# CowYo
|
||||
## Collections of Organized Words You Open
|
||||
![Version 0.94](https://img.shields.io/badge/version-0.94-brightgreen.svg)
|
||||
![Version 0.95](https://img.shields.io/badge/version-0.95-brightgreen.svg)
|
||||
|
||||
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>
|
||||
|
||||
**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.
|
||||
|
||||
**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.
|
||||
|
Loading…
Reference in New Issue
Block a user