Merge branch 'release/v2.3.3'

This commit is contained in:
Amirhossein Mahmoodi
2024-11-16 09:43:33 +03:30
5 changed files with 23 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
NEXT_PUBLIC_API_NAME = "Loan Facilities Dashboard"
NEXT_PUBLIC_API_VERSION = "2.3.2"
NEXT_PUBLIC_API_VERSION = "2.3.3"
NEXT_PUBLIC_DEFAULT_LANGUAGE = "fa"
NEXT_PUBLIC_DEFAULT_DIRECTION = "rtl"

4
.gitignore vendored
View File

@@ -35,4 +35,6 @@ ecosystem.config.js
public/config.json
.vscode/
.vscode/
*.bundle

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:21.1.0-alpine3.18
WORKDIR /var/www/app
COPY package*.json .
RUN npm install
COPY . .
CMD [ "tail", "-f", "/dev/null"]

7
docker-compose.yml Normal file
View File

@@ -0,0 +1,7 @@
services:
app:
build: .
volumes:
- .:/var/www/app
- /var/www/app/node_modules
command: sh -c "cd /var/www/app && tar -czvf /versions/user_v2_$(date +%Y_%m_%d).tar.gz node_modules"

View File

@@ -43,9 +43,11 @@
},
"notifications": {
"error_static_text": "عملیات با خطا مواجه شد",
"warning_static_text": "عملیات با خطا مواجه شد",
"success_static_text": "عملیات با موفقیت انجام شد",
"code": "کد",
"success": "موفق",
"warning": "اخطار",
"error": "خطا",
"pending": "درحال اجرا..."
},