What is the minimal code setup needed to use vapor/fluent-sqlite-driver or vapor/fluent in a standalone Swift executable package? "Standalone" meaning without the inclusion of Vapor itself.
Basically, what would "Hello World" starters look like for a FluentSQLiteDriver (SQL-like calls) standalone executable package and Fluent (ORM calls) standalone executable package?
Background:
I set out to create two quick & simple packages to tinker with "fluent-sqlite-driver" and "fluent + fluent-sqlite-driver". Alas, "quick" did not happen and "simple" remains TBD. Some of the findings:
- "The package readmes will show docs on how to use the package standalone" did not happen for Fluent and for the related FluentSQLiteDriver...
- "... a great reference for seeing how to configure Fluent without Vapor. For example: FluentSQLiteDriverTests.swift" leads one on a nugget treasure explorering the depths of things like
FluentBenchmark. Not so simple.