From: Salomon Turgman <sturgman@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: Import Reusable org-babel snippet using #+SETUPFILE
Date: Tue, 16 Jun 2020 11:21:10 -0400 [thread overview]
Message-ID: <20200616112110.5646866fc6589d2b12f3646f@gmail.com> (raw)
In-Reply-To: <CAFw+bXFJS+DKD5MQYZpPQ0igQ3LOHPkFetP9RDNQM1OX3hPT1w@mail.gmail.com>
Thanks for the useful example. I will take a look. Didn't know about org-sbe!
-s-
On Mon, 15 Jun 2020 15:52:16 -0400
Douglas Perrin <doug2024@gmail.com> wrote:
> Hi Salomon Turgman,
> I do this a lot and have had success using a combination of #+SETUPFILE to
> bring in names and configuration, and org-sbe to do initialization. I mix
> emacs vars and org names in my source headers with back quoting.
>
> The following example has a template file containing user/local
> information. This is brought into the example file, on load, through #:eval
> calling org-babel-lob-ingest and org-sbe, in addition, parameters are
> pulled in with #+SETUPFILE and the same template file name. The end result
> for this example is a running docker image with access to local paths and
> "remote" execution via tramp. More complex orchestration and actions in the
> template are certainly possible using org-sbe calls in the init elisp
> source blocks but hopefully, this shows the flavor of what can be done.
>
> In addition to avoiding code duplication, I have found this to be very
> effective when my group is all working from the same org file (via git) but
> everyone has their own template file with credentials, local paths, and org
> more preferences (ie showstars).
> Regards,
> Doug
>
> ---------------------------------------------------------------------------------------------------------------------------------
> TemplatingExample.org
> ---------------------------------------------------------------------------------------------------------------------------------
> #+SETUPFILE: Template-Loader.org
>
> * Init Code, run when file is opened
> #+name: Execute-On-Load
> #+begin_src elisp :results output
> ;; for this the container and image have the same name
> (setq *DockerName* "ContanerName")
> #+end_src
>
> * Run Contaner
> #+begin_src bash :results raw drawer :var DockerName=`,*DockerName*
> DockerHubUID=`,*DockerHubUID* containerName=`,*DockerContainer*
> LocalWorkPath=`,*LocalWorkPath* LocalDataPath=`,*LocalDataPath*
> docker run --rm -d \
> -v $LocalWorkPath:/root/Workdir \
> -v $LocalDataPath:/root/Data \
> --name $DockerName $DockerHubUID/$DockerName bash -c "tail -f
> /dev/null"
> #+end_src
>
> * run IN contaner
> #+begin_src bash :results output :dir (concat "/docker:" `,*DockerName*
> ":/root/Workdir/")
> ls
> #+end_src
>
> # Local Variables:
> # eval: (org-babel-lob-ingest "Template-Loader.org")
> # eval: (org-sbe "Init-Template")
> # eval: (org-sbe "Execute-On-Load")
> # End:
>
> ---------------------------------------------------------------------------------------------------------------------------------
> Template-Loader.org
> ---------------------------------------------------------------------------------------------------------------------------------
> #+STARTUP: showstars
> #+PROPERTY: header-args :mkdirp yes
>
> #+name: Init-Template
> #+begin_src emacs-lisp :results none
> ;; This is called expecitly via org-sbe in the buffer that will uses the
> templating
> (setq *DockerHubUID* "MyUserName")
> (setq *LocalWorkPath* "/run/desktop/mnt/host/c/Users/.....")
> (setq *LocalDataPath* "/run/desktop/mnt/host/d/devData/")
>
> ;; ingest + SBE can be used to bring in a hierarchy of templates
> (org-babel-lob-ingest "./GroupTools/GeneralORGTools.org")
> (org-sbe "GeneralORGTools.org")
>
> #+end_src
--
Salomon Turgman <sturgman@gmail.com>
next prev parent reply other threads:[~2020-06-16 15:22 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-15 19:52 Import Reusable org-babel snippet using #+SETUPFILE Douglas Perrin
2020-06-16 15:21 ` Salomon Turgman [this message]
2020-06-17 14:23 ` Salomon Turgman
-- strict thread matches above, loose matches on Subject: below --
2020-06-18 16:03 Douglas Perrin
2020-06-09 17:28 Salomon Turgman
2020-06-09 23:09 ` Nicolas Goaziou
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200616112110.5646866fc6589d2b12f3646f@gmail.com \
--to=sturgman@gmail.com \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.