mirror of
https://gitlab.com/tavo-wasd/blog.git
synced 2025-06-07 06:43:28 -06:00
makefile
This commit is contained in:
parent
7375901f96
commit
6c0a169af2
4 changed files with 20 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
.hugo_build.lock
|
.hugo_build.lock
|
||||||
|
resources/
|
||||||
public/
|
public/
|
||||||
|
|
13
Makefile
Normal file
13
Makefile
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# Build public/ site and remove metadata from images
|
||||||
|
public: clean deps
|
||||||
|
hugo
|
||||||
|
|
||||||
|
# Run hugo server
|
||||||
|
server: clean deps
|
||||||
|
hugo server
|
||||||
|
|
||||||
|
# Dependencies
|
||||||
|
deps: /bin/hugo
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf .hugo_build.lock resources/ public/
|
|
@ -2,3 +2,9 @@
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
Personal blog for various purposes.
|
Personal blog for various purposes.
|
||||||
|
|
||||||
|
# ToDo
|
||||||
|
|
||||||
|
- Enable RSS
|
||||||
|
- Get previous posts
|
||||||
|
- Add commenting funcionality (but in blog posts as well)
|
||||||
|
|
5
todo.md
5
todo.md
|
@ -1,5 +0,0 @@
|
||||||
# ToDo
|
|
||||||
|
|
||||||
- Enable RSS
|
|
||||||
- Get previous posts
|
|
||||||
- Add commenting funcionality (but in blog posts as well)
|
|
Loading…
Reference in a new issue