## Hidden folders
-Hidden folders are copied as well, we only make an exception for `.git`, which
-is explicitly ignored. This is handy for folders like .well-known, but could
-cause unwanted behavior if there's other hidden files in the directory.
+Hidden folders are copied as well, we only make an exception for `.git/`, and
+`.gitignore` which are explicitly ignored. This is handy for folders like
+`.well-known`, but could cause unwanted behavior if there's other hidden files
+in the directory.
## What happens to files that aren't gemini?
They're copied as-is.
+
+# Building
+
+This project is built using cargo. A makefile is provided to run common tasks.
+
+Build dev version with `make` or `make build`.
+
+Build release with `make -e profile=release` or `make -e profile=release build`.