Skip to content

Commit 7357ccf

Browse files
Notice board (#437)
2 parents 94c7bf1 + 5f5e35d commit 7357ccf

8 files changed

Lines changed: 1151 additions & 449 deletions

File tree

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ GOOGLE_CLIENT_ID=
44
GOOGLE_CLIENT_SECRET=
55
NEXT_PUBLIC_SECRET=secret
66
NEXT_PUBLIC_BASE_PATH="/portal"
7-
NEXTAUTH_URL=https://localhost:3000/portal/api/auth
7+
NEXTAUTH_URL=https://localhost:5001/portal/api/auth
88
NEXT_PUBLIC_RECAPTCHA_SITE_KEY=

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,9 @@ yarn-error.log*
3434
*.tsbuildinfo
3535
next-env.d.ts
3636
.env
37+
38+
# Environment files
39+
.env
40+
.env.*
41+
!.env.example
42+
!.env.sample

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"@mui/icons-material": "^5.15.20",
1616
"@mui/material": "^5.15.20",
1717
"@mui/x-date-pickers": "^7.6.2",
18+
"@nestjs/typeorm": "^11.0.1",
1819
"@radix-ui/colors": "^3.0.0",
1920
"@radix-ui/react-accordion": "^1.1.2",
2021
"@radix-ui/react-checkbox": "^1.0.4",
@@ -36,6 +37,7 @@
3637
"antd": "^5.19.1",
3738
"axios": "^1.6.3",
3839
"chartjs": "^0.3.24",
40+
"class-transformer": "^0.5.1",
3941
"class-validator": "^0.15.1",
4042
"class-variance-authority": "^0.7.0",
4143
"clsx": "^2.1.1",
@@ -56,8 +58,10 @@
5658
"material-react-table": "^2.13.0",
5759
"next": "^14.1.4",
5860
"next-auth": "^4.23.2",
61+
"nodemailer": "^8.0.7",
5962
"papaparse": "^5.4.1",
6063
"pdf-lib": "^1.17.1",
64+
"pg": "^8.20.0",
6165
"prettier": "3.3.3",
6266
"qs": "^6.12.0",
6367
"radix-ui": "^1.0.1",
@@ -68,7 +72,7 @@
6872
"react-dom": "latest",
6973
"react-google-button": "^0.7.2",
7074
"react-google-recaptcha": "^3.1.0",
71-
"react-hot-toast": "^2.4.1",
75+
"react-hot-toast": "^2.6.0",
7276
"react-icons": "^4.12.0",
7377
"react-modal": "^3.16.1",
7478
"react-quill": "^2.0.0",
@@ -81,6 +85,7 @@
8185
"tailwind-merge": "^2.6.0",
8286
"tailwind-scrollbar-hide": "^2.0.0",
8387
"tailwindcss-animate": "^1.0.7",
88+
"typeorm": "^0.3.29",
8489
"xlsx": "^0.18.5",
8590
"xlsx-js-style": "^1.2.0",
8691
"yup": "^1.3.3"

0 commit comments

Comments
 (0)