Skip to content

Commit ce0b316

Browse files
authored
Merge pull request #526 from ixartz/feb-updates
Feb-updates
2 parents af8aed4 + edce0a1 commit ce0b316

File tree

11 files changed

+3613
-6841
lines changed

11 files changed

+3613
-6841
lines changed

.env

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
# Need advanced features? Multi-tenancy & Teams, Roles & Permissions, Shadcn UI, End-to-End Typesafety with oRPC,
44
# Stripe Payment, Light / Dark mode. Try Next.js Boilerplate Pro: https://nextjs-boilerplate.com/pro-saas-starter-kit
55

6+
# Or, need a Self-hosted auth stack (Better Auth)? Try Next.js Boilerplate Max: https://nextjs-boilerplate.com/nextjs-multi-tenant-saas-boilerplate
7+
68
# Clerk authentication
79
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_cmVsYXhlZC10dXJrZXktNjcuY2xlcmsuYWNjb3VudHMuZGV2JA
810

.env.production

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
# Need advanced features? Multi-tenancy & Teams, Roles & Permissions, Shadcn UI, End-to-End Typesafety with oRPC,
44
# Stripe Payment, Light / Dark mode. Try Next.js Boilerplate Pro: https://nextjs-boilerplate.com/pro-saas-starter-kit
55

6+
# Or, need a Self-hosted auth stack (Better Auth)? Try Next.js Boilerplate Max: https://nextjs-boilerplate.com/nextjs-multi-tenant-saas-boilerplate
7+
68
# Hosting
79
# Replace by your domain name
810
NEXT_PUBLIC_APP_URL=https://demo.nextjs-boilerplate.com

.github/FUNDING.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
github: ixartz
22
custom:
3-
- 'https://nextjs-boilerplate.com/pro-saas-starter-kit'
4-
- 'https://nextlessjs.com'
3+
- 'https://nextjs-boilerplate.com/nextjs-multi-tenant-saas-boilerplate'

.github/workflows/CI.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@ jobs:
6767

6868
- if: github.event_name == 'pull_request'
6969
name: Validate all commits from PR
70-
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
70+
run: npx commitlint --from $BASE_SHA --to $HEAD_SHA --verbose
71+
env:
72+
BASE_SHA: ${{ github.event.pull_request.base.sha }}
73+
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
7174

7275
- name: Linter
7376
run: npm run lint
@@ -100,7 +103,7 @@ jobs:
100103
node-version: ${{ matrix.node-version }}
101104

102105
- name: Run unit tests
103-
uses: docker://mcr.microsoft.com/playwright:v1.57.0
106+
uses: docker://mcr.microsoft.com/playwright:v1.58.1
104107
with:
105108
args: npm run test -- --coverage
106109

@@ -128,7 +131,7 @@ jobs:
128131
node-version: ${{ matrix.node-version }}
129132

130133
- name: Run storybook tests
131-
uses: docker://mcr.microsoft.com/playwright:v1.57.0
134+
uses: docker://mcr.microsoft.com/playwright:v1.58.1
132135
with:
133136
args: npm run storybook:test
134137

@@ -154,7 +157,7 @@ jobs:
154157
restore-nextjs-cache: true
155158

156159
- name: Run E2E tests
157-
uses: docker://mcr.microsoft.com/playwright:v1.57.0
160+
uses: docker://mcr.microsoft.com/playwright:v1.58.1
158161
with:
159162
args: sh -c "HOME=/root npm run test:e2e" # Set HOME to /root to avoid Playwright error with Firebox
160163
env:

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,8 @@ Open http://localhost:3000 with your favorite browser to see your project. For y
231231

232232
Need advanced features? Multi-tenancy & Teams, Roles & Permissions, Shadcn UI, End-to-End Typesafety with oRPC, Stripe Payment, Light / Dark mode. Try [Next.js Boilerplate Pro](https://nextjs-boilerplate.com/pro-saas-starter-kit).
233233

234+
Or, need a Self-hosted auth stack (Better Auth)? Try [Next.js Boilerplate Max](https://nextjs-boilerplate.com/nextjs-multi-tenant-saas-boilerplate)
235+
234236
### Set up authentication
235237

236238
To get started, create a Clerk account at [Clerk.com](https://clerk.com?utm_source=github&utm_medium=sponsorship&utm_campaign=nextjs-boilerplate) and create a new application in the Clerk Dashboard. Then copy the `NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY` and `CLERK_SECRET_KEY` values and add them to your `.env.local` file (not tracked by Git):

0 commit comments

Comments
 (0)