Skip to content

Commit d798e02

Browse files
Merge branch 'staging' of https://github.com/OpenSignLabs/OpenSign into raktima-opensignlabs-patch-11
2 parents 323c9f2 + bc08aeb commit d798e02

File tree

24 files changed

+2806
-1873
lines changed

24 files changed

+2806
-1873
lines changed

.env.local_dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PUBLIC_URL=http://localhost:3000
77
# Set it to true if you want to generate the Sourcemap for debugging
88
GENERATE_SOURCEMAP=false
99
# Set it to the URL from where APIs will be accessible, for local development it should be localhost:3000/api/app (use your local port number instead)
10-
REACT_APP_SERVERURL=http://localhost:8080/app
10+
# REACT_APP_SERVERURL=http://localhost:8080/app
1111
# A 12 character long random app identifier. The value of this should be same as APP_ID which is a variable used by backend API.
1212
REACT_APP_APPID=opensign
1313

@@ -46,7 +46,7 @@ USE_LOCAL=true
4646
MAILGUN_API_KEY=
4747
MAILGUN_DOMAIN=mail.yourdomain.com
4848
49-
SMTP_ENABLE=
49+
SMTP_ENABLE=true
5050
SMTP_HOST=smtp.yourhost.com
5151
SMTP_PORT=443
5252

.github/workflows/Docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ci
22
on:
33
push:
44
branches:
5-
- 'staging'
5+
- 'main'
66

77
jobs:
88
docker:

Caddyfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{$HOST_URL} {
2+
reverse_proxy client:3000
3+
handle_path /app/* {
4+
reverse_proxy server:8080
5+
rewrite * /app{uri}
6+
}
7+
}

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
build:
2+
@echo "Building with HOST_URL=${HOST_URL}"
23
cp .env.local_dev .env
34
cd apps/OpenSign && cp ../../.env.local_dev .env && npm install && npm run build
4-
docker compose up --build --force-recreate
5+
HOST_URL=${HOST_URL} docker compose up --build --force-recreate
56

67
run:
8+
@echo "Building with HOST_URL=${HOST_URL}"
79
cp .env.local_dev .env
8-
docker compose up -d
10+
docker compose up -d

apps/OpenSign/package-lock.json

Lines changed: 69 additions & 97 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/OpenSign/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"private": true,
55
"dependencies": {
66
"@formkit/auto-animate": "^0.8.2",
7-
"@lottiefiles/dotlottie-react": "^0.8.6",
7+
"@lottiefiles/dotlottie-react": "^0.8.7",
88
"@pdf-lib/fontkit": "^1.1.1",
99
"@radix-ui/themes": "^3.1.1",
1010
"@react-pdf/renderer": "^3.4.4",
1111
"@reduxjs/toolkit": "^2.2.7",
12-
"axios": "^1.7.2",
12+
"axios": "^1.7.3",
1313
"file-saver": "^2.0.5",
1414
"i18next": "^23.12.2",
1515
"i18next-browser-languagedetector": "^8.0.0",
@@ -33,10 +33,10 @@
3333
"react-dom": "^18.2.0",
3434
"react-gtm-module": "^2.0.11",
3535
"react-helmet": "^6.1.0",
36-
"react-i18next": "^15.0.0",
36+
"react-i18next": "^15.0.1",
3737
"react-konva": "^18.2.10",
3838
"react-pdf": "^9.1.0",
39-
"react-quill": "^2.0.0",
39+
"react-quill-new": "^3.2.2",
4040
"react-redux": "^9.1.2",
4141
"react-rnd": "^10.4.11",
4242
"react-router-dom": "^6.26.0",
@@ -114,7 +114,7 @@
114114
"postcss": "^8.4.41",
115115
"prettier": "^3.3.3",
116116
"pretty-quick": "^4.0.0",
117-
"tailwindcss": "^3.4.7",
117+
"tailwindcss": "^3.4.9",
118118
"terser-webpack-plugin": "^5.3.10",
119119
"webpack-cli": "^5.1.4"
120120
},

0 commit comments

Comments
 (0)