ThomasTJdev / nim_websitecreator

Nim fullstack website framework - deploy a website within minutes
https://nimwc.org
MIT License
176 stars 7 forks source link

Why symlink instead of using full path #94

Closed ThomasTJdev closed 5 years ago

ThomasTJdev commented 5 years ago

Currently we are symlinking files in files_efs.nim. Could we just assign the fullpath to storageEFS* and remove the symlinking?

when defined(dev):
  storageEFS* = getAppDir() / dict.getSectionValue("Storage", "storagedev")
else:
  storageEFS* = dict.getSectionValue("Storage", "storage")
juancarlospaco commented 5 years ago

Sounds good.