Minimal analytics server built with Tsonic + ASP.NET Core + EF Core (SQLite).
This repo is also a “real-world” readiness test for Tsonic (NativeAOT + EF query precompilation).
- .NET 10 SDK
- Node.js + npm
tsonicinstalled globally, or point scripts at a local checkout viaTSONIC_BIN
npm install# apply SQLite migrations
npm run migrate
# run server (builds + generates EF compiled model)
npm run devnpm run selftestTo run against a local (unpublished) Tsonic checkout:
TSONIC_BIN="node /path/to/tsonic/packages/cli/dist/index.js" npm run selftest