**Project/Setup Info**
* Framework: Jester/WS/Karax
* OS: Linux/Ubuntu
* Nim Version: Nim 2.0.8
* Nimble Version: v0.14.2
* Current Relevant .nimble details:
srcDir = "src"
binDir = "builds"
bin = @["wssh"]
installDirs = @["public"]
installExt = @["nims"]
Run
* Current file structure:
wssh -
public -
index.html
…
src -
wssh.nim
…
wssh.nimble
…
Run
**Related Threads**
* <https://forum.nim-lang.org/t/2084#12930> [Dead]
**Issues**
* No matter how hard I try none of the static files in /public ever get
installed with `nimble install` even though it is marked with “installDirs”. I
also tried putting /public in src. Changed nothing.
* I need my project to compile js front end code along with backend c code on
build and don’t know how I would do that. The compiled js also needs to be
included in the installed files.
* 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?
If anyone could help solve some of these issues or point me in the right
direction it would be appreciated.