darcsconfig.js
export default {
repos: {
// Change this "eleventy-darcs" key to be the name of your project
"Eleventy Darcs": {
defaultBranch: 'main',
branches: {
'main': {
// Set the 'location' to be the relative path to that repository.
// You might want a "../" at the beginning to go up one level.
location: "./",
description: "Main branch of this project."
},
'works-in-progress': {
location: "../clone-of-eleventy-darcs/eleventy-darcs-clone/",
description: "Ongoing dev work in this project. Patches here may be unrecorded and modified at any time.",
},
},
// Add things to "languageExtensions" to tell the syntax highlighter what to do
// with file extensions that it might not know by default. "njk": "html" means
// to highlight a .njk file like a .html file.
languageExtensions: {
"njk": "html",
},
},
},
// Change the baseUrl to be your real domain name when when deploying this publicly.
baseUrl: "https://repos.tuckerm.us",
}