Skip to content

Commit dc0651c

Browse files
chore: set up guide for macOs (#178)
Signed-off-by: mukundkumarjha <mukundiiitg@gmail.com>
1 parent 3f3b2d8 commit dc0651c

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ See [docs/hugo-setup.md](docs/hugo-setup.md) for installing prerequisites (Hugo,
1515
npm i
1616
```
1717

18-
For Windows Setup Instructions [Windows_Setup.md](docs/setup/windows_setup.md)
19-
18+
For Windows Setup Instructions [Windows_setup.md](docs/setup/windows_setup.md)
19+
For Windows Setup Instructions [Macbook_setup.md](docs/setup/Macbook_setup.md)
2020
## Environments
2121

2222
### Dev

docs/setup/Macbook_setup.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Step 1: Install Dependencies
2+
3+
Open your Terminal and run the following commands:
4+
5+
# Install Node.js and npm (if not already installed)
6+
brew install node
7+
8+
# Install the Hugo 'extended' version (required for Tailwind/Sass)
9+
brew install hugo
10+
11+
Step 2: Clone the Repository
12+
13+
Clone your fork of the project to your local machine:
14+
15+
git clone https://github.com/hiero-ledger/hiero-website
16+
cd hiero-website
17+
18+
Step 3: Install Node Packages
19+
20+
The project uses npm to manage CSS processing tools.
21+
22+
npm i
23+
24+
Step 4: Local Development
25+
26+
To start the Hugo development server with live reloading:
27+
28+
npm run start
29+
30+
Access the site: Once the command is running, open your browser to http://localhost:1313/
31+
32+
Step 5: Building for Production
33+
34+
To generate the static site with optimized and minified CSS:
35+
36+
npm run build

0 commit comments

Comments
 (0)