Thanks for your response!

I’m pretty sure that solves the `How do I locate the installed files from the 
binary run in the bin folder? Is there a good way to write a proc to find this 
on run?` issue by doing something like this:
    
    
    proc findStaticPath(): string =
      result = currentSourcePath().parentDir / "public"
      if not dirExists(result):
        result = "./public"
    
    
    Run

> I think I tried something similar before but I backed out because I thought 
> it compiled in a temporary directory (as I was getting some errors from there)

Reply via email to