File tree 1 file changed +44
-0
lines changed
1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1
1
# 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
+ ```
You can’t perform that action at this time.
0 commit comments