Compare commits

3 Commits

Author SHA1 Message Date
cff6d9cc50 Roll to 0.1.1 2022-07-15 09:30:10 -07:00
2c4f98d567 Fix bottom padding 2022-07-15 09:29:10 -07:00
386341f977 Update Dockerfile 2022-07-15 07:17:03 -07:00
4 changed files with 7 additions and 4 deletions

View File

@@ -41,5 +41,8 @@ RUN mkdir -p /var/lib/sigl \
USER sigl USER sigl
EXPOSE 5151 EXPOSE 5151
ENTRYPOINT [ "/home/sigl/docker-entry.sh" ] VOLUME [ "/var/lib/sigl" ]
CMD [ "sigl" ] CMD [ "sigl" ]
ENTRYPOINT [ "/home/sigl/docker-entry.sh" ]

View File

@@ -1,6 +1,6 @@
{ {
"name": "sigl", "name": "sigl",
"version": "0.1.0", "version": "0.1.1",
"description": "Simple Grocery List", "description": "Simple Grocery List",
"dependencies": { "dependencies": {
"tailwindcss": "^3.1.6" "tailwindcss": "^3.1.6"

View File

@@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "sigl" name = "sigl"
version = "0.1.0" version = "0.1.1"
description = "Simple Grocery List" description = "Simple Grocery List"
authors = ["Jonathan Krauss <jkrauss@asymworks.com>"] authors = ["Jonathan Krauss <jkrauss@asymworks.com>"]
license = "BSD-3-Clause" license = "BSD-3-Clause"

View File

@@ -52,7 +52,7 @@
<main class="max-w-3xl mx-auto bg-white md:border-l md:border-r border-b md:rounded-b border-gray-300"> <main class="max-w-3xl mx-auto bg-white md:border-l md:border-r border-b md:rounded-b border-gray-300">
{% block main %}{% endblock %} {% block main %}{% endblock %}
</main> </main>
<footer class="max-w-3xl mx-auto flex flex-col mt-1 px-2 text-xs text-gray-600"> <footer class="max-w-3xl mx-auto flex flex-col mt-1 mb-24 px-2 text-xs text-gray-600">
<p>Sigl | Simple Grocery List | Version {{ config['APP_VERSION'] }}</p> <p>Sigl | Simple Grocery List | Version {{ config['APP_VERSION'] }}</p>
<p>Copyright &copy;2022 Asymworks, LLC. All Rights Reserved.</p> <p>Copyright &copy;2022 Asymworks, LLC. All Rights Reserved.</p>
</footer> </footer>