forked from tektoncd/website
-
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.
Add steps to docs for running website dev environment locally
As a user it is not straight forward on how to run the dev environment. I can not run the website locally without running npm, the sync script and hugo in a specific order. As a user it is also annoying to create an alias to run a makefile. I changed the makefile so that I do not have to make an alias. As a developer, I do not believe this is documented anywhere and following this guide will fix this issue. tektoncd#3
- Loading branch information
1 parent
95611df
commit c51fc38
Showing
2 changed files
with
28 additions
and
35 deletions.
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
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,6 +1,6 @@ | ||
.PHONY: sync | ||
sync: | ||
python sync/sync.py | ||
python3 sync/sync.py | ||
|
||
.PHONY: serve | ||
serve: | ||
|