Skip to content

Commit fae66e8

Browse files
committed
fixed Set Up the Folder Structure
1 parent b3e64ba commit fae66e8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

sqlite-cloud/quick-start-next.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@ NEXT_PUBLIC_SQLITECLOUD_URL=sqlitecloud://abcd1234.global1.qwerty.sqlite.cloud:8
3636

3737
5. **Set Up the Folder Structure**
3838
```bash
39-
mkdir -p sqlc-quickstart/src/app/api/albums \
40-
sqlc-quickstart/src/app/components \
41-
sqlc-quickstart/src/constants
42-
43-
touch sqlc-quickstart/src/app/api/albums/route.ts \
44-
sqlc-quickstart/src/app/components/GetAlbumsClient.tsx \
45-
sqlc-quickstart/src/app/components/GetAlbumsServer.tsx \
46-
sqlc-quickstart/src/app/components/UpdateAlbumsClient.tsx \
47-
sqlc-quickstart/src/constants/queries.ts \
48-
sqlc-quickstart/src/types.ts
39+
mkdir -p src/app/api/albums
40+
mkdir -p src/app/components
41+
mkdir -p src/constants
42+
43+
touch src/app/api/albums/route.ts
44+
touch src/app/components/GetAlbumsClient.tsx
45+
touch src/app/components/GetAlbumsServer.tsx
46+
touch src/app/components/UpdateAlbumsClient.tsx
47+
touch src/constants/queries.ts
48+
touch src/types.ts
4949
```
5050

5151
6. **Define Data Types**

0 commit comments

Comments
 (0)