-
I want to use livebook to do some exploration of local CSV files that I have in an adjacent directory. What is the best way to set up the These CSV files happen to be in the root of a mix project, so I can set the runtime to be "mix standalone" of that same mix project to get However, when I am not in any sort of mix project, how can I easily set up the CWD to be the location of the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I believe |
Beta Was this translation helpful? Give feedback.
I believe
__ENV__.file
will return the.livemd
, so you can setFile.cd(Path.dirname(__ENV__.file))
. Although in the long term we should support uploads, as that's the best way to ensure it will work on all environments.