a CLI tool to post updates to crunk-scheduler.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
crunk 8c444e57f2 Update 'README.md' 6 months ago
src learning the difference between String and &str 6 months ago
.gitignore forgot ignore 8 months ago
Cargo.toml trying to make multi form post data and struggling 6 months ago
LICENSE trying something new 8 months ago
README.md Update 'README.md' 6 months ago

README.md

crunk-update

a CLI tool to post updates to crunk-scheduler.

Designing CLI tools

Make working software first

  • crunk-update --text "text" should make a paragraph of <p>text</p> in crunk-scheduler
  • crunk-update --file "test.md" should post a markdown file to crunk-scheduler and have it converted to html
  • this is now possible and working. up next we should make some CLI flags such as --help (done through using clap)

Learning Rust.

Readme driven development

  • have crunk-scheduler do all the conversion to html in rss.
  • make this as simple as possible
    • post a simple text
    • post markdown
    • post media files (jpeg, mp3, mp4 etc)
  • 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)