José Manuel Rodríguez D.
Results
2
comments of
José Manuel Rodríguez D.
I'm using [watchman-make](https://facebook.github.io/watchman/docs/watchman-make) to automatically rebuild my templates with the following command. `watchman-make -p "**/*.templ" --run scripts/templ_generate.sh` My `scripts/templ_generate.sh` file is just: ``` #!/usr/bin/env sh templ generate ``` _Edit:_ I...
Just for reference for anyone who is not sure about how to achieve ``` create table posts ( id bigint primary key generated always as identity ) ``` the following...