-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlit.config.ts
More file actions
51 lines (48 loc) · 1.24 KB
/
sqlit.config.ts
File metadata and controls
51 lines (48 loc) · 1.24 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import type { SqlitConfig } from '@/lib/types/config';
import pythonBasics from '@/sheets/python-basics.sqlit.md';
import pythonExercises from '@/sheets/python-exercises.sqlit.md';
import sqlBasics from '@/sheets/sql-basics.sqlit.md';
import sqlExercises from '@/sheets/sql-exercises.sqlit.md';
import welcomeSheet from '@/sheets/welcome.sqlit.md';
const config: SqlitConfig = {
categories: [
{
name: 'Docs',
sheets: [
{
name: 'Welcome to sqlit',
description:
'Run some SQL queries and Python code in the browser in this interactive introduction to sqlit.',
markdown: welcomeSheet,
},
],
},
{
name: 'Examples',
sheets: [
{
name: 'SQL Basics',
description: 'Introduction to databases with SQLite.',
markdown: sqlBasics,
},
{
name: 'SQL Exercises',
description: 'Practice writing some SQL queries.',
markdown: sqlExercises,
},
{
name: 'Python Basics',
description: 'Introduction to the Python programming language',
markdown: pythonBasics,
},
{
name: 'Python Exercises',
description:
'Practice writing some Python code that queries a database.',
markdown: pythonExercises,
},
],
},
],
};
export default config;