Skip to content
This repository has been archived by the owner on Dec 29, 2019. It is now read-only.

Latest commit

 

History

History

08-tofu

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

A tofu ragout

  1. Start an R session in this directory (08-tofu)

    • RStudio users, open the *.Rproj file in this directory
  2. Build the project:

    remake::make()
  3. Fetch the ragout:

    remake::fetch("ragout")
  4. Prepare a tofu ragout in addition to the meat ragout:

    new rules

    • Buy the raw tofu from the local market

    • Don't marinate it (because we don't know how to marinate tofu yet)

      • You could also implement marinate_tofu()
    • Reuse the vegetables from the meat ragout for the tofu ragout

    • Add spice to your taste

    • Hint: Some copy-pasting may be required.

  5. Make sure the tofu_ragout target is part of the main target!

    targets:
      all:
        depends:
        - ragout
        - tofu_ragout
        - final.html
    
  6. Build the project, fetch the tofu ragout. The meat ragout is not recreated as part of this process (surprise!).