Skip to content

Commit a7c55b7

Browse files
chore(dev): move dev app to apps workspace (#3888)
* chore: move dev app * chore: run tests sequentially
1 parent cbf9622 commit a7c55b7

36 files changed

+44
-39
lines changed

.gitignore

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,9 @@ packages/next-auth/next
3939
packages/next-auth/middleware.d.ts
4040
packages/next-auth/middleware.js
4141

42-
# Development dev-app
43-
packages/dev-app/src/css
44-
packages/dev-app/css
45-
packages/dev-app/package-lock.json
46-
packages/dev-app/yarn.lock
47-
packages/dev-app/prisma/migrations
48-
packages/dev-app/dist
49-
packages/dev-app/next-auth
42+
# Development app
43+
apps/dev/src/css
44+
apps/dev/prisma/migrations
5045

5146
# VS
5247
/.vs/slnx.sqlite-journal

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ yarn
4242

4343
3. Populate `.env.local`:
4444

45-
Copy `packages/dev-app/.env.local.example` to `packages/dev-app/.env.local`, and add your env variables for each provider you want to test.
45+
Copy `apps/dev/.env.local.example` to `apps/dev/.env.local`, and add your env variables for each provider you want to test.
4646

4747
```sh
48-
cd packages/dev-app
48+
cd apps/dev
4949
cp .env.local.example .env.local
5050
```
5151

5252
> NOTE: You can add any environment variables to .env.local that you would like to use in your dev app.
53-
> You can find the next-auth config under`packages/dev-app/pages/api/auth/[...nextauth].js`.
53+
> You can find the next-auth config under`apps/dev/pages/api/auth/[...nextauth].js`.
5454
5555
4. Start the developer application/server:
5656

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)