Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mismith0227/hugo_theme_pickles.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormisumi <mismith0227@users.noreply.github.com>2021-07-28 06:20:49 +0300
committerGitHub <noreply@github.com>2021-07-28 06:20:49 +0300
commitd9cf18c4b4c9072e4bc3ef430fc82ba992d2d776 (patch)
tree55e182147b3c8815aed0665280ad04ec8afe3f8b
parent66ac1c7bf43fa5a06366633bf19823d649e50b2b (diff)
parentf324d00c0ace9c6716fe82aef2516865b4339c09 (diff)
Merge pull request #177 from mismith0227/develop
release
-rw-r--r--README.md30
-rw-r--r--package.json2
2 files changed, 18 insertions, 14 deletions
diff --git a/README.md b/README.md
index 0e38635..b30882e 100644
--- a/README.md
+++ b/README.md
@@ -85,22 +85,26 @@ Please create feature branches from [develop](https://github.com/mismith0227/hug
1. Install Node modules
- $ yarn
+```sh
+yarn
+```
1. Run gulp. You don't need to install gulp globally.
- // Development
- $ yarn run dev
- $ // On another tab
- $ hugo server
-
- // Production (compress)
- $ yarn run prod
- $ // On another tab
- $ hugo server
-
- // Build
- $ yarn run build
+```
+// Development
+$ yarn run dev
+$ // On another tab
+$ yarn run hugo
+
+// Production (compress)
+$ yarn run prod
+$ // On another tab
+$ yarn run hugo
+
+// Build
+$ yarn run build
+```
## License
diff --git a/package.json b/package.json
index aa9f804..71aa56c 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,7 @@
"description": "",
"main": "index.js",
"scripts": {
- "hugo": "hugo server",
+ "hugo": "hugo server -s exampleSite --baseUrl http://localhost --themesDir=../../ --theme=hugo_theme_pickles",
"dev": "gulp",
"prod": "gulp --env production",
"build": "gulp build --env production",