harris-chris / Jot.jl

Streamlines the creation and management of AWS Lambda functions written in Julia
MIT License
41 stars 6 forks source link

Using Project.toml while using PackageCompiler #19

Closed krishvishal closed 3 years ago

krishvishal commented 3 years ago

Hi, is there a way to Project.toml to input dependencies instead of defining them in an array?

harris-chris commented 3 years ago

@krishvishal yes, there is. If your code is already a Julia project (as opposed to a script) then the project.toml for it will be used automatically. You can just do, say: responder = get_responder("/path/to/project", :response_func, Vector) - this is one of the examples in the examples page. Let me know if you have any difficulties or if anything isn't clear.