I would like to share with you a new Emacs package called project-tasks that I had been working on. With project-tasks, you can effortlessly manage tasks within your project using the power of org-babel.

You can take a look here https://github.com/TxGVNN/project-tasks

I developed and use it a long time, and it helps me a lot of to manage tasks I need to run on a project.

Example: tasks.org

#+name: docker-compose up
#+begin_src compile :name "docker-compose-up" :results none
docker-compose up -d
#+end_src

You can see more examples in tasks.org on repository.

  • vfclistsB
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    Please use the four spaces indentation method of formatting code not the triple backtick.

    It doesn’t look right in the old reddit style format which is better for code.

    where is /u/backtickbot when you need it?

    • txgvnnOPB
      link
      fedilink
      English
      arrow-up
      1
      ·
      10 months ago

      Thank you. I’ve just known it. Updated!

  • camber-weaverB
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    This is pretty interesting…

    It appear as though your workflow is pretty similar to mine when producing technical documentation. I need to dig into this a bit. Hope you don’t mind me asking a question after only having done a quick fly-by…

    What is the ob type ‘compile’? I’ve never seen that one. Something you’ve created or something that has just been under my radar?

    • txgvnnOPB
      link
      fedilink
      English
      arrow-up
      1
      ·
      10 months ago

      Thanks.

      What is the ob type ‘compile’?

      It’s another package that I created it long time. You can install it in MELPA ob-compile. Run compile by org-babel.

      I use ob-compile very much in my workflow.