Skip to content
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
dde7f9a
feature(stripe): implement api route in cms folder that creates membe…
deb-coder-man Apr 27, 2026
8602072
feat/styling and seperating out the sign up page
Richman-Tan Apr 28, 2026
eb79aad
feature(stripe): changed sign up logic so members get created in CMS …
deb-coder-man Apr 28, 2026
f92dfb7
Merge branch 'feature/stripe' into feature/signup-page
Richman-Tan Apr 29, 2026
fee4111
chore/running lint
Richman-Tan Apr 29, 2026
5fe5237
fix: changes
Richman-Tan May 1, 2026
e814607
chore: fix prettier formatting in signup page
Richman-Tan May 1, 2026
926eab5
Potential fix for pull request finding
Richman-Tan May 1, 2026
75d0fc4
Potential fix for pull request finding
Richman-Tan May 1, 2026
d615dec
Potential fix for pull request finding
Richman-Tan May 1, 2026
5cdeb65
Potential fix for pull request finding
Richman-Tan May 1, 2026
0403ea9
refactor: improve member creation logic and error handling in Stripe …
Richman-Tan May 1, 2026
03f27ef
Potential fix for pull request finding
Richman-Tan May 1, 2026
3fc4877
Potential fix for pull request finding
Richman-Tan May 1, 2026
7c58b97
Potential fix for pull request finding
Richman-Tan May 1, 2026
dc5ca6c
fix: apply review 4209899554 - validation, pending member update, Str…
Copilot May 1, 2026
33ffb97
refactor: enhance SelectField component with dropdown icon and improv…
Richman-Tan May 1, 2026
2ca3790
chore: fix prettier formatting in signup page
Richman-Tan May 1, 2026
be9c12b
feat: implement multi-step signup form with validation and payment pr…
Richman-Tan May 1, 2026
ed3f563
Merge branch 'main' into feature/signup-page
Richman-Tan May 2, 2026
13f304d
feat: refactor signup components and add new input fields with improv…
Richman-Tan May 2, 2026
6f876cb
refactor: improve code formatting and readability in CardSection, Pay…
Richman-Tan May 2, 2026
afeaf11
feat: enhance signup form with additional input fields and validation…
Richman-Tan May 3, 2026
3db8350
fix: apply review 4215882932 - aria attributes, copy fix, error handl…
Copilot May 3, 2026
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
10 changes: 9 additions & 1 deletion cms/.env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
DATABASE_URL=mongodb://127.0.0.1/your-database-name
DATABASE_URL=postgresql://127.0.0.1:5432/your-database-name
PAYLOAD_SECRET=YOUR_SECRET_HERE

# Stripe — copy keys from Stripe Dashboard > Developers
STRIPE_SECRET_KEY=sk....
STRIPE_WEBHOOK_SECRET=whsec_...
STRIPE_PRICE_ID=price...

Comment thread
joengy marked this conversation as resolved.
# URL of the public web app (used for Stripe success/cancel redirects)
WEB_URL=http://localhost:3000
3 changes: 2 additions & 1 deletion cms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts"
},
"dependencies": {
"@payloadcms/db-postgres": "3.79.0",
"@payloadcms/next": "3.79.0",
"@payloadcms/richtext-lexical": "3.79.0",
"@payloadcms/ui": "3.79.0",
Expand All @@ -29,7 +30,7 @@
"react": "19.2.1",
"react-dom": "19.2.1",
"sharp": "0.34.2",
"@payloadcms/db-postgres": "3.79.0"
"stripe": "^22.1.0"
},
"devDependencies": {
"@playwright/test": "1.58.2",
Expand Down
Loading
Loading