⚙️ docusaurus.config.js
docusaurus.config.js
This file holds all configuration that _ should_ change in this site. If you find yourself manually tweaking some obscure JavaScript file in /src
then open an issue as we need to include that in this template.
The 1st part of this file contains the changeable information:
/docusaurus.config.js
// Change here to customise config
// Name of the Github Repo, it's also teh baseUrl
const workshopName = 'docusaurus-workshop';
// Change this if hosting outside mongodb-developer
const organizationName = "mongodb-developer";
// Main page config
const title = "Docusaurus Meta Workshop";
const tagLine = "A Workshop written in Docusaurus to teach you how to write Workshops using docusaurus";
const startButtonTitle = "Enter Inception";
const favicon = "img/favicon.ico"
// Main Page Features
const featureList = [
{
title: 'Hands-On Experiences',
illustration: 'img/coding.png',
description: `
Learn by doing, not by reading.
`,
},
{
title: 'Amazing Instructors',
illustration: 'img/highfive.png',
description: `
Build it with the help of our amazing instructors, or just do it on your own.
`,
},
{
title: 'Take-Home Material',
illustration: 'img/writing.png',
description: `
Take home the material and keep learning.
`,
},
];
// UTM stuff
const utmAdvocateName = `diego.freniche`;
const utmWorkshopName = 'docusaurus_workshop'
const utmParams = `utm_campaign=devrel&utm_source=workshop&utm_medium=cta&utm_content=${utmWorkshopName}&utm_term=${utmAdvocateName}`;
// Footer links (probably no need to change them)
const footerLinks = [
{
label: "Try MongoDB Atlas",
href: `https://www.mongodb.com/try?${utmParams}`,
},
{
label: "Forums",
href: `https://www.mongodb.com/community/forums?${utmParams}`,
},
{
label: "Developer Center",
href: `https://www.mongodb.com/developer?${utmParams}`,
},
{
label: "MongoDB University",
href: `https://learn.mongodb.com?${utmParams}`,
},
{
href: `https://github.com/${organizationName}/${workshopName}`,
label: "This lab in GitHub",
},
];
///////////////////////////////////////////////////////////////////////////////
// DON'T CHANGE ANYTHING BELOW UNLESS YOU KNOW WHAT YOU'RE DOING //
///////////////////////////////////////////////////////////////////////////////