From 1d2adcdaf44008375218974e1e27495237214edb Mon Sep 17 00:00:00 2001 From: SoumyadiptoPal Date: Tue, 31 Oct 2023 13:06:48 +0530 Subject: [PATCH 1/5] Update styling of Certificate Button --- microfrontends/SignDocuments/src/css/signature.css | 1 + 1 file changed, 1 insertion(+) diff --git a/microfrontends/SignDocuments/src/css/signature.css b/microfrontends/SignDocuments/src/css/signature.css index dad6e2673..19ebe71b0 100644 --- a/microfrontends/SignDocuments/src/css/signature.css +++ b/microfrontends/SignDocuments/src/css/signature.css @@ -237,6 +237,7 @@ background: #08bc66; border: none !important; color: white !important; + text-decoration: none !important; } .certificateBtn:hover { From 55cc01d86c792fc1afc7fb95f69126860fe2eb92 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 10:19:29 +0000 Subject: [PATCH 2/5] docs: update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4046d997f..a9cd0e20b 100644 --- a/README.md +++ b/README.md @@ -121,6 +121,7 @@ We would like to thank all our contributors and users for their support and feed Edogbanya Emmanuel
Edogbanya Emmanuel

🐛 pranav514
pranav514

💻 Aria
Aria

💻 + Soumyadipto Pal
Soumyadipto Pal

💻 From cab7f7d886b48c914e4b155355579bff230e4826 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 10:19:30 +0000 Subject: [PATCH 3/5] docs: update .all-contributorsrc --- .all-contributorsrc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.all-contributorsrc b/.all-contributorsrc index d33cb394d..65fa59897 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -124,6 +124,15 @@ "contributions": [ "code" ] + }, + { + "login": "SoumyadiptoPal", + "name": "Soumyadipto Pal", + "avatar_url": "https://avatars.githubusercontent.com/u/119007659?v=4", + "profile": "https://github.com/SoumyadiptoPal", + "contributions": [ + "code" + ] } ] } From 7f50445657738788aadbd31be75c0b0a5b9b9af3 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 31 Oct 2023 16:13:22 +0530 Subject: [PATCH 4/5] doc: Fix localhost url --- INSTALLATION.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALLATION.md b/INSTALLATION.md index 2f726be84..f96ee51a0 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -19,9 +19,9 @@ Below are the steps to follow - ``` git clone https://github.com/OpenSignLabs/OpenSign.git ``` -- Rename the .env.frontend_dev file to .env using below command +- Copy the .env.frontend_dev file to .env using below command(on mac & linux). For windows use COPY command instead. ``` - mv .env.frontend_dev .env + cp .env.frontend_dev .env ``` - CD to /apps/OpenSign directory - Install NPM packages using @@ -32,7 +32,7 @@ Below are the steps to follow - ``` npm run start ``` -You should be able to access the application from https://localhost:3000 after this. +You should be able to access the application from http://localhost:3000 after this. Create an account by signing-up and start contributing. From dedabc0e6e136b7f871875398d65d581f05bee57 Mon Sep 17 00:00:00 2001 From: Andrew <148278535+andrew-opensignlabs@users.noreply.github.com> Date: Tue, 31 Oct 2023 16:38:38 +0530 Subject: [PATCH 5/5] docs: fix the .env path for running locally --- INSTALLATION.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALLATION.md b/INSTALLATION.md index f96ee51a0..78dbcf142 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -19,9 +19,9 @@ Below are the steps to follow - ``` git clone https://github.com/OpenSignLabs/OpenSign.git ``` -- Copy the .env.frontend_dev file to .env using below command(on mac & linux). For windows use COPY command instead. +- Copy the .env.frontend_dev file to apps/OpenSign/.env using below command(on mac & linux). For windows use COPY command instead. ``` - cp .env.frontend_dev .env + cp .env.frontend_dev apps/OpenSign/.env ``` - CD to /apps/OpenSign directory - Install NPM packages using