From 3b4531f31e848ecda2c5a3907b34a37c39ddc0c8 Mon Sep 17 00:00:00 2001 From: Pawel Zelawski Date: Fri, 11 Apr 2025 12:25:01 +0200 Subject: docs: Add live demo link and fix asset tracking - Update README.md to include a new "Live Demo" section linking to https://digi-id.pzelawski.dev/. - Remove the `public` entry from .gitignore to ensure static assets (like the logo) within the public directory are tracked by Git. This resolves issues where assets were missing after cloning the repository for deployment. --- .gitignore | 1 - README.md | 4 ++++ public/assets/digiid-logo.png | Bin 0 -> 135882 bytes 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 public/assets/digiid-logo.png diff --git a/.gitignore b/.gitignore index da82a31..89739e7 100644 --- a/.gitignore +++ b/.gitignore @@ -98,7 +98,6 @@ dist # Gatsby files .cache/ # Add node_modules/ and logs to the ignore list if they aren't already there -public .tmp .idea .vscode diff --git a/README.md b/README.md index 21afa04..de78194 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ A demonstration application showcasing the integration of the [`digiid-ts`](https://github.com/pawelzelawski/digiid-ts) library for Digi-ID authentication. This project provides a simple, responsive web application with a React frontend and Express backend, demonstrating the complete Digi-ID authentication flow. +## Live Demo + +You can view a live demo of this application deployed here: [https://digi-id.pzelawski.dev/](https://digi-id.pzelawski.dev/) + ## Features - **Digi-ID Authentication**: Complete implementation of the Digi-ID authentication protocol diff --git a/public/assets/digiid-logo.png b/public/assets/digiid-logo.png new file mode 100644 index 0000000..ebe1099 Binary files /dev/null and b/public/assets/digiid-logo.png differ -- cgit v1.2.3