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
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
2
2
3
-
## Getting Started
3
+
# TraceView 2
4
+
5
+
TraceView 2 is a web-based visualization tool designed to enhance the capabilities of
6
+
[ARDoCo](https://github.com/ardoco/ardoco). \
7
+
It provides a clear, visual way to explore tracelinks and find inconsistencies between software architecture models and
8
+
documentation in software projects.
9
+
10
+
It is built using Next.js and React.
4
11
5
-
First, run the development server:
6
12
7
-
```bash
8
-
npm run dev
9
-
# or
10
-
yarn dev
11
-
# or
12
-
pnpm dev
13
-
# or
14
-
bun dev
15
-
```
16
13
17
-
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18
14
19
-
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
20
15
21
-
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
22
16
23
17
## Docker
24
18
@@ -28,3 +22,5 @@ docker build -t traceview2 .
28
22
docker run -p 3000:3000 traceview2
29
23
```
30
24
25
+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
Copy file name to clipboardExpand all lines: src/app/layout.tsx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ const inter = Inter({subsets: ['latin']});
14
14
15
15
exportconstmetadata: Metadata={// those metadatas are the ones that are used for every page in the application. They can be overridden on a page by page basis.
16
16
title: ' ArDoCo TraceView 2',
17
-
description: 'This is a demo project',
17
+
description: 'Is a web application for ARDoCo to visualize tracelinks and inconsistencies between software architecture models and documentation.',
0 commit comments