fermyon / developer

This is the home for developer.fermyon.com
https://developer.fermyon.com
Apache License 2.0
51 stars 66 forks source link

Missing "type" field in SQLite storage runtime configuration #1332

Closed rylev closed 1 month ago

rylev commented 1 month ago

In the docs on SQLite storage runtime configuration, the example toml is not correct and will result in an error if used.

Instead of this:

[sqlite_database.todo]
path = "/planning/todo.db"

It should be this:

[sqlite_database.todo]
type = "spin" # This is missing!
path = "/planning/todo.db"
rylev commented 1 month ago

Unfortunately https://github.com/fermyon/developer/pull/1334 only fixed the first instance of this. Just below is another runtime-config file that also needs to be updated.