-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
metadata.yml
32 lines (31 loc) · 889 Bytes
/
metadata.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
title: Datasette
about: simonw/datasette.io
about_url: https://github.com/simonw/datasette.io
databases:
content:
queries:
feed:
title: Datasette News
sql: |-
select
'tag:datasette.io,' || date as atom_id,
'Datasette News: ' || date as atom_title,
date || 'T00:00:00-08:00' as atom_updated,
'https://datasette.io/news/' || date as atom_link,
render_markdown(group_concat(body, '
')) as atom_content_html,
'Simon Willison' as atom_author_name,
'https://simonwillison.net/' as atom_author_uri
from
news
group by
date
order by
date desc
limit
20
plugins:
dogsheep-beta:
database: dogsheep-index
config_file: templates/dogsheep-beta.yml
template_debug: true