Static site generator for the site of Delft's student music association Krashna Musika, built with React and Gatsby.js.
To get started, you'll need the Node.js environment and the Yarn package manager. Once you have those installed, run the following commands from the root directory of this repo:
yarn
yarn global add gatsby-cliTo start a development server (with live-reloading), run:
yarn developThere will now be a server listening on localhost:8000!
To build a production bundle, run:
yarn buildChanges to the master branch are automatically deployed to the live site (at krashna.nl), through the Netlify build service.
In general, this project follows the common Gatsby.js folder structure:
/src/pages. The file name of each JS file (excluding the .js extension) is used as the URL of the corresponding page./src/templates./src/components folder.However, there are some ways in which it differs, to offer internationalization and other features:
/src/locales folder. Each sub-folder contains a copy of each translation definition file, in a specific language. These translation files are compiled down to JSON, which is served alongside the rest of the content and dynamically inserted into the page at runtime. We use the react-intl library, integrated by gatsby-plugin-intl, for translation./src/data.Adding content can be done easily by adding text or some other data to predefined files, some examples are given below. All content is written in Markdown. If you are not familiar with Markdown, or need some help, check out this handy link
To add a page...
/src/pages with as name the URL you want to put that page on. When in doubt on how to structure this file, have a look at the other existing pages in that folder./src/locales. Refer to existing pages and translations for examples of how one can access such a translation key in the page file and how this can be defined in the translation file.To add a concert...
/src/data/concerts.yaml list following the same format as the other entries.concerts.yaml files in the /src/locales folder, in both languages.To add a news post...
/src/data/news.yaml list following the same format as the other entries.news.yaml files in the /src/locales folder, in both languages.