diff --git a/.gitignore b/.gitignore
index 5850eb5d..2f6d9ed9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -194,5 +194,8 @@ typings/
# ublock + chromium
/uBlock0.chromium
/chromium-profile
-# direnv
/.direnv
+
+# KJ
+deploy.sh
+gunicorn.sh
diff --git a/Makefile b/Makefile
index 1b0fc625..2ae021d7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: serve
+.PHONY: serve install
serve:
python manage.py runserver
@@ -13,3 +13,6 @@ format:
black bookmarks
black siteroot
npx prettier bookmarks/frontend --write
+
+install:
+ .venv/bin/pip install -r requirements.txt --upgrade
\ No newline at end of file
diff --git a/bookmarks/frontend/components/SearchAutoComplete.svelte b/bookmarks/frontend/components/SearchAutoComplete.svelte
index 4a9cec94..aca77e98 100644
--- a/bookmarks/frontend/components/SearchAutoComplete.svelte
+++ b/bookmarks/frontend/components/SearchAutoComplete.svelte
@@ -210,7 +210,7 @@
{/if}
{#each suggestions.tags as suggestion}
@@ -221,7 +221,7 @@
{/if}
{#each suggestions.recentSearches as suggestion}
@@ -232,7 +232,7 @@
{/if}
{#each suggestions.bookmarks as suggestion}
diff --git a/bookmarks/frontend/components/TagAutocomplete.svelte b/bookmarks/frontend/components/TagAutocomplete.svelte
index 09553b48..66eb41ec 100644
--- a/bookmarks/frontend/components/TagAutocomplete.svelte
+++ b/bookmarks/frontend/components/TagAutocomplete.svelte
@@ -119,7 +119,7 @@
{#each suggestions as tag,i}
diff --git a/bookmarks/templates/bookmarks/bookmark_list.html b/bookmarks/templates/bookmarks/bookmark_list.html
index def80ae6..5ca93293 100644
--- a/bookmarks/templates/bookmarks/bookmark_list.html
+++ b/bookmarks/templates/bookmarks/bookmark_list.html
@@ -152,4 +152,4 @@
-{% endif %}
+{% endif %}
\ No newline at end of file
diff --git a/bookmarks/templates/bookmarks/layout.html b/bookmarks/templates/bookmarks/layout.html
index 678da394..b69d20c0 100644
--- a/bookmarks/templates/bookmarks/layout.html
+++ b/bookmarks/templates/bookmarks/layout.html
@@ -98,4 +98,4 @@ LINKDING
{% endblock %}