forked from macite/programming-arcana
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.js
88 lines (87 loc) · 2.37 KB
/
config.js
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const config = {
gatsby: {
pathPrefix: "/",
siteUrl: "https://splashkit.io",
trailingSlash: false,
},
header: {
logo: "https://www.splashkit.io/images/skbox-5d36169d.svg",
logoLink: "https://splashkit.io/arcana/",
title:
"Programming Arcana",
githubUrl: "https://github.com/splashkit/programming-arcana",
helpUrl: "https://github.com/splashkit/splashkit-core/discussions",
tweetText:
"Check out learning to program with the Programming Arcana",
links: [
{
text: "test",
link: "test",
},
],
search: {
enabled: false,
indexName: "programming-arcana",
algoliaAppId: process.env.GATSBY_ALGOLIA_APP_ID,
algoliaSearchKey: process.env.GATSBY_ALGOLIA_SEARCH_KEY,
algoliaAdminKey: process.env.ALGOLIA_ADMIN_KEY,
},
},
sidebar: {
forcedNavOrder: [
"index",
"/01-use-programs-like-a-pro",
"/02-compile-and-run-programs",
"/03-build-simple-sequences",
"/04-storing-changing-values",
"/05-communicating-syntax",
"/06-create-reusable-code",
"/07-control-the-flow",
"/08-structure-your-data",
"/09-utilise-indirection",
"/10-work-with-multiples",
"/11-organise-multiples-in-collections",
"/12-develop-a-procedural-program",
"/13-switch-languages",
"/14-create-objects",
"/15-toolbox"
],
"collapsedNav": [
"/01-use-programs-like-a-pro",
"/02-compile-and-run-programs",
"/03-build-simple-sequences",
"/04-storing-changing-values",
"/05-communicating-syntax",
"/06-create-reusable-code",
"/07-control-the-flow",
"/08-structure-your-data",
"/09-utilise-indirection",
"/10-work-with-multiples",
"/11-organise-multiples-in-collections",
"/12-develop-a-procedural-program",
"/13-switch-languages",
"/14-create-objects",
"/15-toolbox"
],
links: [
{
text: "SplashKit Docs",
link: "https://splashkit.io",
}
],
frontline: false,
ignoreIndex: false,
},
siteMetadata: {
title: "Learn to Program | Programming Arcana",
description:
"A concept focused introduction to programming",
ogImage:
null,
docsLocation:
"https://splashkit.io/arcana",
favicon:
"https://www.splashkit.io/images/favicon.ico",
},
};
module.exports = config;