From c9418283cf58bd6d9ccdb46ea46bf9df1bb2e694 Mon Sep 17 00:00:00 2001 From: Kristoffer Date: Thu, 25 Jul 2024 16:41:20 +0200 Subject: [PATCH] update the docs a bit --- docs/src/apps.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/src/apps.md b/docs/src/apps.md index fc3a748966..abd0be080e 100644 --- a/docs/src/apps.md +++ b/docs/src/apps.md @@ -32,7 +32,7 @@ end # module ```toml # Project.toml -... +# standard fields here [apps] reverse = {} @@ -47,16 +47,16 @@ $ reverse some input string emos tupni gnirts ``` +directly in the terminal. + ## Installing Julia apps -The installation of Julia apps are similar to installing julia libraries but instead of using e.g. `Pkg.add` or `pkg> add` one uses `Pkg.Apps.add` or `pkg> app add`. +The installation of Julia apps are similar to installing julia libraries but instead of using e.g. `Pkg.add` or `pkg> add` one uses `Pkg.Apps.add` or `pkg> app add` (`develop` is also available). !!! note - The path `.julia/bin` has to be added to your `PATH` in order for - - + The path `.julia/bin` has to be added to your `PATH` in order for apps to be runnable after being installed. + Pkg currently does not do this for you. ## Other information -- The app will currently run with the same Julia executable as was used to install the app. To update the Julia executable used run... -- +- The app will currently run with the same Julia executable as was used to install the app.