diff --git a/.gitignore b/.gitignore index c4b387a..9f9bf71 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .hugo_build.lock +resources/ public/ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7229bfe --- /dev/null +++ b/Makefile @@ -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/ diff --git a/README.md b/README.md index c819392..6e8b5f6 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,9 @@ ## Description Personal blog for various purposes. + +# ToDo + +- Enable RSS +- Get previous posts +- Add commenting funcionality (but in blog posts as well) diff --git a/todo.md b/todo.md deleted file mode 100644 index bf1788b..0000000 --- a/todo.md +++ /dev/null @@ -1,5 +0,0 @@ -# ToDo - -- Enable RSS -- Get previous posts -- Add commenting funcionality (but in blog posts as well)