Skip to content

Commit 9a2721a

Browse files
Update README with instructions to run locally
1 parent ce18d18 commit 9a2721a

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

README.md

+44
Original file line numberDiff line numberDiff line change
@@ -1 +1,45 @@
11
# www-new
2+
3+
This is a Hugo-based website. Follow the instructions below to run this website locally.
4+
5+
## Prerequisites
6+
7+
- [Hugo](https://gohugo.io/getting-started/installing/) (extended version recommended)
8+
9+
## Setup
10+
11+
1. Clone the repository:
12+
13+
```sh
14+
git clone https://github.com/llvm/www-new.git
15+
cd www-new
16+
```
17+
18+
2. Initialize and update the submodules (theme):
19+
20+
```sh
21+
git submodule update --init --recursive
22+
```
23+
24+
3. Install postcss-cli
25+
```sh
26+
npm install postcss-cli
27+
```
28+
29+
## Running the Website Locally
30+
31+
1. Start the Hugo server:
32+
33+
```sh
34+
hugo server
35+
```
36+
37+
2. Open your browser and navigate to `http://localhost:1313` to view the website.
38+
39+
## Additional Commands
40+
41+
- To build the website for production:
42+
43+
```sh
44+
hugo
45+
```

0 commit comments

Comments
 (0)