Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
a28a158
razorpay added: popup
joywin2003 Apr 15, 2024
f890a9b
clean up
joywin2003 Apr 15, 2024
5b2f89d
Update schema.prisma: Add user relation to Faculty and Student models
rabilrbl Apr 16, 2024
46a9393
Fix: API endpoint URL in BuyProduct.tsx
rabilrbl Apr 16, 2024
b955320
Update makePayment function in Buy.tsx to include additional props
rabilrbl Apr 16, 2024
66d84cc
Add payment button to Buy.tsx
rabilrbl Apr 16, 2024
9b44901
feat: Update Razorpay integration in Buy.tsx and BuyProduct.tsx
rabilrbl Apr 16, 2024
29658cd
Update Dockerfile: Remove AUTH_SECRET
rabilrbl Apr 16, 2024
eb7eb2e
registeration: no UI
joywin2003 Apr 16, 2024
250d543
registration UI
joywin2003 Apr 16, 2024
0dc7e8b
merged
joywin2003 Apr 16, 2024
be4aa27
razorpay
joywin2003 Apr 16, 2024
c6c9d7b
Merge branch 'razorpay' of github.com:tiarasjec/frontend into razorpay
rabilrbl Apr 16, 2024
1e4282c
fix: Refactor Razorpay integration in route.ts
rabilrbl Apr 16, 2024
65ccd9e
fix: Refactor Razorpay integration in route.ts
rabilrbl Apr 16, 2024
5ed0377
feat: Refactor Razorpay integration in route.ts and verify/route.ts, …
rabilrbl Apr 16, 2024
f6803ac
fix: Refactor Razorpay integration in route.ts, Buy.tsx, and migratio…
rabilrbl Apr 16, 2024
294d0e0
Merge branch 'main' into razorpay
rabilrbl Apr 16, 2024
f8064ba
fix: Refactor checkout component
rabilrbl Apr 16, 2024
730d6aa
fix: Refactor Buy and Checkout components for Razorpay integration
rabilrbl Apr 16, 2024
00bd111
fix: Refactor Checkout component to include key prop in list items
rabilrbl Apr 16, 2024
394b0a1
fix: remove unnecessary imports
rabilrbl Apr 16, 2024
c266261
Refactor event registration title in Register page
rabilrbl Apr 16, 2024
0685aa0
Merge branch 'main' into razorpay
rabilrbl Apr 16, 2024
52fa1d8
fix: Refactor event registration title in Register page
rabilrbl Apr 16, 2024
dc978cf
redirect
joywin2003 Apr 17, 2024
1a1bd4c
Merge branch 'main' into razorpay
rabilrbl Apr 17, 2024
c180c90
emailing
joywin2003 Apr 17, 2024
f612a87
fix: Refactor payment handling logic in makePayment function
rabilrbl Apr 17, 2024
ed7d638
Merge branch 'razorpay' of github.com:tiarasjec/frontend into razorpay
rabilrbl Apr 17, 2024
7a0382d
Refactor Dockerfile to use ENTRYPOINT instead of CMD for starting the…
rabilrbl Apr 17, 2024
b464e76
Add RegisteredUser model to schema.prisma
rabilrbl Apr 18, 2024
2ef6b14
Refactor Prisma migrations and package.json scripts
rabilrbl Apr 18, 2024
dbc761e
Merge branch 'main' into razorpay
rabilrbl Apr 18, 2024
6d760e6
added emailing using react email
joywin2003 Apr 18, 2024
1d4e9b9
Update Dockerfile to include GMAIL_PASS and GMAIL_USER environment va…
rabilrbl Apr 18, 2024
fa193b3
Fix unescaped in UserRegistrationEmail.tsx
rabilrbl Apr 18, 2024
c9740ef
Fix: Replace username with session name
rabilrbl Apr 18, 2024
3600e19
Merge branch 'main' into razorpay
rabilrbl Apr 18, 2024
96d66cb
fix: Refactor Checkout component to lazy load Buy component and add L…
rabilrbl Apr 18, 2024
81f8efe
Fix: Remove hardcoded email sender and use environment variable in ma…
rabilrbl Apr 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ ENV RAZORPAY_SECRET=$RAZORPAY_SECRET
ENV AUTH_TRUST_HOST="true"
ARG AUTH_URL
ENV AUTH_URL=$AUTH_URL
ARG GMAIL_PASS
ENV GMAIL_PASS=$GMAIL_PASS
ARG GMAIL_USER
ENV GMAIL_USER=$GMAIL_USER

ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
Expand Down
Loading