From ed25e968ebba685255c74011772c531d233dddec Mon Sep 17 00:00:00 2001 From: Dhairya Majmudar <2022kuec2045@iiitkota.ac.in> Date: Thu, 11 Jul 2024 12:13:41 +0530 Subject: [PATCH] adding setup guide --- README.md | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 63 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 74f370d..6da1aba 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,63 @@ -# conference -The JSON Schema conference website +## JSON Schema Conference + +[![JSON Schema logo - Build more, break less, empower others.](https://raw.githubusercontent.com/json-schema-org/.github/main/assets/json-schema-banner.png)](https://json-schema.org) + + +## Run Locally + +This section is for those interested in contributing or running the landscape website locally. + +**Prerequisites:** + +* Install [Hugo](https://gohugo.io/installation/) + +**Cloning the Website:** + +```bash +git clone https://github.com/{{your_username}}/conference.git +``` + +**Initialising git submodules** + +```bash +git submodule update --init +``` + +**Running dev server** +```bash +hugo server +``` + +This starts a local server and opens the website in your web browser at http://localhost:1313. + +