Thank you so much for taking the time to go through our Getting Started guide and we hope it has given you a good overview of how to work with Greenwood and what some of the possibilities are. To learn more about the project we encourage you to review our API docs to learn more about how you can use Greenwood or check out our repo to see what we're working on next, or if you need to reach out, feel free to open an issue!
Although configuration is a topic all on its own, we do want to walk through setting up a configuration file for your project. As you may have noticed, the <title>
of the site being made during the Getting Started section said My Personal Blog. This is what Greenwood's configuration can be used for.
To change the title of the project (like in the companion repo), create a (NodeJS) module called greenwood.config.js at the root of your project and configure the export
object with a title property.
module.exports = {
title: 'My Personal Site'
};
That's it! You can learn more about configuring Greenwood here.
Since Greenwood aims to be a web "first" tool, all the great web development resources for the web already apply to Greenwood! Below are some resources that we think might be useful as part of a broader understanding of the topic of web development and that we have found invalualable for our own development and learning.