jfilby
jfilby
I took a look at patterns.nim and in the check() function found this line of code: return s.substr(i, cutTo) == n.text This means that a partial copy of a string...
Yes, I'm using Karax to generate HTML in this case.
I managed to narrow down the issue. It seems that any DateTime field in an object causes the error. I've attached a test case. I understand this isn't something that's...
What about a transpiler that converts JSX code to macro calls?
There needs to be a models\db.yaml file where the database driver can be specified per module, e.g.: ``` driver: stdlib/db_sqlite minDbVersion: 3.0 ```
Thanks. Nexus itself isn't a CMS, but it can be used to build a CMS. That is a good idea for another project though. Right now there are a lot...
The install & setup docs have been improved. Next, simplify the setup with a single NimScript that prompts the user for settings and performs the setup.
TODO: Make running scripts/dist optional. It would be one less step to simply set NEXUS_BIN_PATH to the nexus/src/nexus/cmd/bin directory. 1. Move the scripts to the cmd/bin directory. 2. Change scripts/dist...
Note that there is a routes generator already, but it needs to be upgraded as it is quite limited. There are only a few YAML fields and you can't specify...
The routes YAML files are now used to generate the routes and starter pages source files. However route parameters should be parsed and assigned to a generated object per route....