Skip to content

Commit 9f501c8

Browse files
committed
Merge remote-tracking branch 'origin/dev' into clickhouse-setup
2 parents b9d72b0 + e7ff500 commit 9f501c8

4 files changed

Lines changed: 4090 additions & 3954 deletions

File tree

.github/workflows/e2e-api-tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,15 +145,15 @@ jobs:
145145
run: sleep 10
146146

147147
- name: Run tests
148-
run: pnpm test
148+
run: pnpm test ${{ matrix.freestyle-mode == 'prod' && '--min-workers=1 --max-workers=1' || '' }}
149149

150150
- name: Run tests again, to make sure they are stable (attempt 1)
151151
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev'
152-
run: pnpm test
152+
run: pnpm test ${{ matrix.freestyle-mode == 'prod' && '--min-workers=1 --max-workers=1' || '' }}
153153

154154
- name: Run tests again, to make sure they are stable (attempt 2)
155155
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev'
156-
run: pnpm test
156+
run: pnpm test ${{ matrix.freestyle-mode == 'prod' && '--min-workers=1 --max-workers=1' || '' }}
157157

158158
- name: Verify data integrity
159159
run: pnpm run verify-data-integrity

README.md

Lines changed: 0 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ We support Next.js, React, and JavaScript frontends, along with any backend that
3434
- [Requirements](#requirements)
3535
- [Setup](#setup)
3636
- [Useful commands](#useful-commands)
37-
- [Chat with the codebase](#chat-with-the-codebase)
38-
- [Architecture overview](#architecture-overview)
3937
- [❤ Contributors](#-contributors)
4038

4139
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
@@ -196,51 +194,6 @@ pnpm verify-data-integrity: Verify the integrity of the data in the database by
196194
197195
Note: When working with AI, you should keep a terminal tab with the dev server open so the AI can run queries against it.
198196
199-
### Chat with the codebase
200-
201-
Storia trained an [AI on our codebase](https://sage.storia.ai/stack-auth) that can answer questions about using and contributing to Stack Auth.
202-
203-
### Architecture overview
204-
205-
```mermaid
206-
graph TB
207-
Website[Your Website]
208-
User((User))
209-
Admin((Admin))
210-
subgraph "Stack Auth System"
211-
Dashboard[Stack Auth Dashboard<br/>/apps/dashboard]
212-
Backend[Stack Auth API Backend<br/>/apps/backend]
213-
Database[(PostgreSQL Database)]
214-
EmailService[Email Service<br/>Inbucket]
215-
WebhookService[Webhook Service<br/>Svix]
216-
StackSDK[Client SDK<br/>/packages/stack]
217-
subgraph Shared
218-
StackUI[Stack Auth UI<br/>/packages/stack-ui]
219-
StackShared[Stack Auth Shared<br/>/packages/stack-shared]
220-
StackEmails[Stack Auth Emails<br/>/packages/stack-emails]
221-
end
222-
end
223-
Admin --> Dashboard
224-
User --> Website
225-
Website --> StackSDK
226-
Backend --> Database
227-
Backend --> EmailService
228-
Backend --> WebhookService
229-
Dashboard --> Shared
230-
Dashboard --> StackSDK
231-
StackSDK --HTTP Requests--> Backend
232-
StackSDK --> Shared
233-
Backend --> Shared
234-
classDef container fill:#1168bd,stroke:#0b4884,color:#ffffff
235-
classDef database fill:#2b78e4,stroke:#1a4d91,color:#ffffff
236-
classDef external fill:#999999,stroke:#666666,color:#ffffff
237-
classDef deprecated stroke-dasharray: 5 5
238-
class Dashboard,Backend,EmailService,WebhookService,Website container
239-
class Database database
240-
```
241-
242-
Thanks to [CodeViz](https://www.codeviz.ai) for generating the diagram!
243-
244197
## ❤ Contributors
245198
246199
<a href="https://github.com/stack-auth/stack-auth/graphs/contributors">

0 commit comments

Comments
 (0)