Update 'README.md'
This commit is contained in:
parent
78594af0ac
commit
8c444e57f2
16
README.md
16
README.md
@ -7,9 +7,10 @@ a CLI tool to post updates to crunk-scheduler.
|
|||||||
* [and this one](https://betterprogramming.pub/building-cli-apps-in-rust-what-you-should-consider-99cdcc67710c)
|
* [and this one](https://betterprogramming.pub/building-cli-apps-in-rust-what-you-should-consider-99cdcc67710c)
|
||||||
|
|
||||||
## Make working software first
|
## Make working software first
|
||||||
* `crunk-update -p "text"` should make a paragraph of `<p>text</p>` in [crunk-scheduler](https://git.vvvvvvaria.org/crunk/crunk-scheduler)
|
* `crunk-update --text "text"` should make a paragraph of `<p>text</p>` in [crunk-scheduler](https://git.vvvvvvaria.org/crunk/crunk-scheduler)
|
||||||
* this is now possible and working. up next we should make some CLI flags such as --help
|
* `crunk-update --file "test.md"` should post a markdown file to [crunk-scheduler](https://git.vvvvvvaria.org/crunk/crunk-scheduler) and have it converted to html
|
||||||
* and look up how to schedule a post
|
* this is now possible and working. up next we should make some CLI flags such as --help (done through using clap)
|
||||||
|
|
||||||
|
|
||||||
## Learning Rust.
|
## Learning Rust.
|
||||||
* [clap is a Command Line Argument Parser for Rust](https://docs.rs/clap/latest/clap/)
|
* [clap is a Command Line Argument Parser for Rust](https://docs.rs/clap/latest/clap/)
|
||||||
@ -17,9 +18,12 @@ a CLI tool to post updates to crunk-scheduler.
|
|||||||
* [Tokio is an asynchronous runtime for the Rust programming language.](https://tokio.rs/)
|
* [Tokio is an asynchronous runtime for the Rust programming language.](https://tokio.rs/)
|
||||||
|
|
||||||
## Readme driven development
|
## Readme driven development
|
||||||
* have crunk-scheduler do all the conversion to html in rss.
|
* have crunk-scheduler do all the conversion to html in rss. ✅
|
||||||
* make this as simple as possible
|
* make this as simple as possible
|
||||||
- post a simple text
|
- post a simple text ✅
|
||||||
- post markdown
|
- post markdown ✅
|
||||||
- post media files (jpeg, mp3, mp4 etc)
|
- post media files (jpeg, mp3, mp4 etc)
|
||||||
* be able to set a time when something is scheduled.
|
* be able to set a time when something is scheduled.
|
||||||
|
* and look up how to schedule a post
|
||||||
|
* have the url in a config file
|
||||||
|
* have the api-key in a config file (yes, everyone loves tokens, but this project is small)
|
||||||
|
Loading…
Reference in New Issue
Block a user