You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: devconnect/README.md
+40-12
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,56 @@
1
+
# DevConnect
2
+
1
3
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2
4
5
+
## Prerequisites
6
+
7
+
- Node.js 18.x or later (required for Next.js 13.4.9 and other dependencies)
8
+
- Yarn package manager
9
+
- Access to the shared library
10
+
3
11
## Getting Started
4
12
5
-
First, run the development server:
13
+
1. First, install the shared library:
14
+
15
+
```bash
16
+
cd ../lib
17
+
yarn install
18
+
```
19
+
20
+
2. Install project dependencies:
21
+
22
+
```bash
23
+
cd ../devconnect
24
+
yarn install
25
+
```
26
+
27
+
3. Run the development server:
6
28
7
29
```bash
8
-
npm run dev
9
-
# or
10
30
yarn dev
11
31
```
12
32
13
33
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
14
34
15
-
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
35
+
## Project Structure
36
+
37
+
-`cms/` - Content management system files for translations
38
+
-`src/` - Main source code directory
39
+
-`ai/` - AI-related functionality
40
+
-`common/components` - Project specific components
41
+
-`pages/` - Next.js pages and API routes
42
+
-`store/` - State management
43
+
-`styles/` - Main style files
44
+
-`types/` - TypeScript type definitions
45
+
-`public/` - Public static assets
46
+
-`styles/` - Global styles and Tailwind configuration
47
+
-`tina/` - TinaCMS configuration and templates
16
48
17
-
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
49
+
## Development
18
50
19
-
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
51
+
- The page auto-updates as you edit files
52
+
- API routes can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello)
53
+
- The `pages/api` directory is mapped to `/api/*`
20
54
21
55
## Learn More
22
56
@@ -26,9 +60,3 @@ To learn more about Next.js, take a look at the following resources:
26
60
-[Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
27
61
28
62
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
29
-
30
-
## Deploy on Vercel
31
-
32
-
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
33
-
34
-
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
0 commit comments