---
title: Welcome to Evidence's Hugging Face Demo
---
The source code for this project can be found in this [Hugging Face Space](https://huggingface.co./spaces/evidence-dev/template/tree/main).
This page can be found in your project at `/pages/index.md`. Make a change to the markdown file and save it to see the change take effect in your browser.
```sql categories
select
category
from needful_things.orders
group by category
```
```sql orders_by_category
select
date_trunc('month', order_datetime) as month,
sum(sales) as sales_usd,
category
from needful_things.orders
where category like '${inputs.category.value}'
and date_part('year', order_datetime) like '${inputs.year.value}'
group by all
order by sales_usd desc
```
## Learn More
- Read the [Docs](https://docs.evidence.dev/)
- Get support on [Slack](https://slack.evidence.dev/)
- Open issues on [Github](https://github.com/evidence-dev/evidence)