Hey folks,
Just wondering—do other projects usually follow this kind of folder structure to organize Lua script files (which contain application rules) and the licenses for LuaJIT, reflect.lua, Lua and other licenses?
my_project/
├── src/
│ ├── main.lua # Main app code
│ ├── reflect.lua # reflect.lua library
├── LICENSES/
│ ├── LICENSE_reflect # MIT license for reflect.lua
│ ├── LICENSE_luajit # MIT license for LuaJIT
│ ├── LICENSE_others_stuff # others license
│ └── LICENSE_lua # MIT license for Lua itself
│── README.md # Project docs
Its normal rename license files for each Lua stuff ?
Or is this more of a personal setup? I am curious to know if there's a common practice around this.
Cheers