-
-
Notifications
You must be signed in to change notification settings - Fork 702
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
datasette skeleton command for kick-starting database and table metadata #164
Milestone
Comments
Example usage:
Generates a
|
This metadata doesn't yet do anything - need to implement #165 |
simonw
added a commit
that referenced
this issue
Dec 7, 2017
Also added support for descriptions and HTML descriptions. Here's an example metadata.json file illustrating custom per-database and per- table metadata: { "title": "Overall datasette title", "description_html": "This is a <em>description with HTML</em>.", "databases": { "db1": { "title": "First database", "description": "This is a string description & has no HTML", "license_url": "http://example.com/", "license": "The example license", "queries": { "canned_query": "select * from table1 limit 3;" }, "tables": { "table1": { "title": "Custom title for table1", "description": "Tables can have descriptions too", "source": "This has a custom source", "source_url": "http://example.com/" } } } } } Closes #165, Refs #164
"datasette skeleton" feature removed #476 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Generates an example
metadata.json
file populated with all of the databases and tables inspected from the specified databases.The text was updated successfully, but these errors were encountered: