David Luecke
David Luecke
This looks fantastic! The only other things I can think of are: - Adding categories to filter by (like "Frontend", "React", "Database" etc. similar to the table of contents in...
We can use the keywords but I think the list to select from should be curated. As for the other question, I think GitHub name is good. Could we add...
I was thinking of having a thing where you log in and submit your project but you're right, moving the JSON file to the https://github.com/feathersjs/awesome-feathersjs repo and making a PR...
Could we add schema (and other OpenApi) information with the [new service options](https://dove.feathersjs.com/api/application.html#use-path-service-options) and auto generate things from that?
This indeed needs to be documented a bit better. It should work after you run `npm run compile` in the `typescript-api` folder.
As for SQL, you can choose MongoDB in the guide. @marshallswain and I have been debating of also having [mongodb-memory-server](https://www.npmjs.com/package/mongodb-memory-server) as an option. If you are using the Replit setup,...
This has been addressed now in #2772 with making the schema wrapper optional and using `FromSchema` or TypeBox directly which both do support references. With plain JSON schema this would...
@DaddyWarbucks is this completed? I was going to see if there is something more that could be done which is why I left it open.
With the new `@feathersjs/knex` you can get a reference to to the table by calling `service.db([params])`: ```js app.service('orders').db().select('finished') ```
I recently tested something similar with the [latest prerelease](https://dove.feathersjs.com) (which also comes with better built-in Knex support) and it worked as expected. Closing since it has been open for a...