-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b35d07
commit d573a37
Showing
2 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
# The site is made using Hugo static site generator | ||
# Portfolio Template | ||
|
||
Work in progress. | ||
|
||
This is a [Hugo](https://gohugo.io) website template designed for personal portfolio. | ||
|
||
To make changes to the theme locally, you need NPM and Hugo installed. Then: | ||
|
||
- Read [STARTER](/STARTER.md) for reference | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# To Run Locally | ||
|
||
## Step 1: Install Hugo | ||
|
||
```bash | ||
brew install hugo | ||
# or | ||
port install hugo | ||
|
||
# To verify your new install: | ||
hugo version | ||
``` | ||
|
||
## Step 2: Clone the Repo | ||
|
||
```bash | ||
git clone [email protected]:Abusayid693/Hugo-Portfolio-.git | ||
``` | ||
|
||
## Step 3: Start the server | ||
|
||
```bash | ||
cd Hugo-Portfolio | ||
# Start hugo server | ||
hugo server | ||
|
||
# Navigate eg : http://localhost:61491 | ||
``` | ||
|
||
# For Compiling SCSS (if you modify SCSS) | ||
We have compiled SCSS file seperately using npm package node-sass | ||
|
||
## Step 1: Install Node Modules | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
## Step 2: Start SCSS compiler | ||
|
||
```bash | ||
npm run compile:sass | ||
``` |