Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RFC: Add hints on running non-compiled app #801

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/src/apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@ archive and sent to another machine or an installer could be wrapped around the
directory, perhaps providing a better user experience than just an archive of
files.

To make the non-compiled app runnable from the command line, one may, e.g., create a script
`MyApp/main.jl` with the contents
```julia
import MyApp
MyApp.julia_main()
```
which can be invoked by calling `julia --project=MyApp MyApp/main.jl args...`.

### Compilation of functions

In the same way as [files for precompilation could be given when creating
Expand Down