Skip to content

Commit

Permalink
docs: Update file structure (#8959)
Browse files Browse the repository at this point in the history
Updated list of files in a newly created project.
Only really new thing for v6 is `entry.client.jsx` I think

---------

Co-authored-by: Dominic Saadi <[email protected]>
  • Loading branch information
Tobbe and jtoar committed Jul 27, 2023
1 parent 0cfc508 commit 83948bf
Showing 1 changed file with 26 additions and 28 deletions.
54 changes: 26 additions & 28 deletions docs/docs/tutorial/chapter1/file-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,18 @@ Don't worry about trying to memorize this directory structure right now, it's ju
├── api
│ ├── db
│ │ └── schema.prisma
│ ├── dist
│ ├── src
│ │ ├── directives
│ │ │ ├── requireAuth
│ │ │ └── skipAuth
│ │ ├── functions
│ │ │ └── graphql.js
│ │ ├── graphql
│ │ ├── lib
│ │ │ ├── auth.js
│ │ │ ├── db.js
│ │ │ └── logger.js
│ │ └── services
│ └── types
│ └── src
│ ├── directives
│ │ ├── requireAuth
│ │ └── skipAuth
│ ├── functions
│ │ └── graphql.js
│ ├── graphql
│ ├── lib
│ │ ├── auth.js
│ │ ├── db.js
│ │ └── logger.js
│ └── services
├── scripts
│ └── seed.js
Expand All @@ -47,6 +45,7 @@ Don't worry about trying to memorize this directory structure right now, it's ju
│ └── NotFoundPage
│ └── NotFoundPage.jsx
├── App.jsx
├── entry.client.jsx
├── index.css
├── index.html
└── Routes.jsx
Expand All @@ -59,20 +58,18 @@ Don't worry about trying to memorize this directory structure right now, it's ju
├── api
│ ├── db
│ │ └── schema.prisma
│ ├── dist
│ ├── src
│ │ ├── directives
│ │ │ ├── requireAuth
│ │ │ └── skipAuth
│ │ ├── functions
│ │ │ └── graphql.ts
│ │ ├── graphql
│ │ ├── lib
│ │ │ ├── auth.ts
│ │ │ ├── db.ts
│ │ │ └── logger.ts
│ │ └── services
│ └── types
│ └── src
│ ├── directives
│ │ ├── requireAuth
│ │ └── skipAuth
│ ├── functions
│ │ └── graphql.ts
│ ├── graphql
│ ├── lib
│ │ ├── auth.ts
│ │ ├── db.ts
│ │ └── logger.ts
│ └── services
├── scripts
│ └── seed.ts
Expand All @@ -91,6 +88,7 @@ Don't worry about trying to memorize this directory structure right now, it's ju
│ └── NotFoundPage
│ └── NotFoundPage.tsx
├── App.tsx
├── entry.client.tsx
├── index.css
├── index.html
└── Routes.tsx
Expand Down

0 comments on commit 83948bf

Please sign in to comment.