Skip to content

Commit

Permalink
readme and starter
Browse files Browse the repository at this point in the history
  • Loading branch information
Abusayid693 committed Mar 21, 2022
1 parent 5b35d07 commit d573a37
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
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

43 changes: 43 additions & 0 deletions STARTER.md
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
```

0 comments on commit d573a37

Please sign in to comment.