Welcome to the drand documentation website! The live site can be found at https://drand.love.
If you want to build this site locally, run the following:
-
Clone this repository:
git clone https://github.com/drand/website.git
-
Move into the
websitefolder and install the npm dependencies:cd website npm install -
Boot up the application in dev mode:
npm start
-
Open localhost:8080 in your browser.
-
Close the local server with
CTRL+c. -
To restart the local server, run
npm startfrom within thewebsitefolder.
- Within the
/docs/blogdirectory, create a new markdown document for the blog post. It should be the date of the post asYYYY-MM-DDfollowed by the post title inkebab-caseand finally the extension.md. So, a post called Bill and Teds Excellent Randomness Protocol created on Monday 25th May 2020 would look like/docs/blog/2020-05-25-bill-and-teds-excellent-randomness-protocol.md. - If you need to add images into your post, first copy and paste them into the blog folder. Then reference them within your post using
[Image caption](./image-name.png). - Before you write the post, add the following meta data using YAML front matter:
--- title: The title of your blog post, note you do not need to repeat this in the post content summary: A short summary of the blog post for display in the post index page. date: 2020-08-10 tags: - Grouping - Tags - Relevant - To - The - Post ---
Always test that you blog post is displaying correctly before merging anything into master.