Skip to content

Commit

Permalink
adding makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaMajmudar committed Jul 18, 2024
1 parent 9732651 commit 2ac5da7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
node_modules/
makefile
node_modules/
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,17 @@ git submodule update --init
hugo server
```

This starts a local server and opens the website in your web browser at http://localhost:1313.
This starts a local server and opens the website in your web browser at http://localhost:1313.

## Editing styles

Website is created leverging scss styles for mkaing changes to it we can edit scss file as per our need then run below make command to build the website and reflect the changes at live server.

```bash
make build
```

**Note:** Since we are using hugo tool for website creation it might take some time to reflect the changes at live server.



Expand Down
2 changes: 2 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build:
npm run build && hugo && hugo server

0 comments on commit 2ac5da7

Please sign in to comment.