Trung D. Ngo

Results 3 comments of Trung D. Ngo

Reserved environment variables are listed here: https://firebase.google.com/docs/functions/config-env?gen=2nd#reserved-names

```typescript // In cloud functions bootstrap.js const app = import(`./dist/project/server/server.mjs`).then(server => server.app()); exports.handle = (req, res) => app.then(it => it(req, res)); ``` It appears that the run() function generated by...

This doesn't work with normalized enum name as well. In my case, the dbml look like this: ``` Enum user.gender { ... } Table user.user { ... gender user.gender [not...