-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
638 additions
and
757 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,8 @@ coverage | |
*.tsbuildinfo | ||
.env | ||
bun.lockb | ||
package-lock.json | ||
yarn.lock | ||
pnpm-lock.yaml | ||
|
||
*storybook.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ COPY . . | |
|
||
RUN npm install | ||
|
||
EXPOSE 3000 | ||
EXPOSE 5173 | ||
|
||
EXPOSE 6006 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"onlyChanged": true, | ||
"projectId": "Project:66e0e7399fb56c0cbb1451d2", | ||
"zip": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
{ | ||
"$schema": "https://shadcn-vue.com/schema.json", | ||
"style": "new-york", | ||
"typescript": true, | ||
"tsConfigPath": "./tsconfig.json", | ||
"tailwind": { | ||
"config": "tailwind.config.js", | ||
"css": "src/assets/css/main.css", | ||
"baseColor": "stone", | ||
"cssVariables": true | ||
}, | ||
"framework": "vite", | ||
"aliases": { | ||
"components": "@/components", | ||
"utils": "@/lib/utils" | ||
} | ||
} | ||
"$schema": "https://shadcn-vue.com/schema.json", | ||
"style": "new-york", | ||
"typescript": true, | ||
"tsConfigPath": "./tsconfig.json", | ||
"tailwind": { | ||
"config": "tailwind.config.js", | ||
"css": "src/assets/css/main.css", | ||
"baseColor": "stone", | ||
"cssVariables": true | ||
}, | ||
"framework": "vite", | ||
"aliases": { | ||
"components": "@/components", | ||
"utils": "@/lib/utils" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
version: '3.2' | ||
|
||
services: | ||
vue: | ||
image: node:20 | ||
volumes: | ||
- .:/app | ||
working_dir: /app | ||
environment: | ||
- GIT_USER_EMAIL=${GIT_USER_EMAIL} | ||
- GIT_USER_NAME=${GIT_USER_NAME} | ||
command: sh -c "git config --global user.email \"$GIT_USER_EMAIL\" && git config --global user.name \"$GIT_USER_NAME\" && git config --global --add safe.directory /app && npm run dev" | ||
ports: | ||
- "3000:3000" | ||
vue: | ||
image: node:20 | ||
volumes: | ||
- .:/app | ||
working_dir: /app | ||
environment: | ||
- GIT_USER_EMAIL=${GIT_USER_EMAIL} | ||
- GIT_USER_NAME=${GIT_USER_NAME} | ||
command: sh -c "git config --global user.email \"$GIT_USER_EMAIL\" && git config --global user.name \"$GIT_USER_NAME\" && git config --global --add safe.directory /app && npm run dev" | ||
ports: | ||
- "5173:5173" | ||
|
||
storybook: | ||
image: node:20 | ||
volumes: | ||
- .:/app | ||
working_dir: /app | ||
environment: | ||
- GIT_USER_EMAIL=${GIT_USER_EMAIL} | ||
- GIT_USER_NAME=${GIT_USER_NAME} | ||
command: sh -c "apt-get update && apt-get install -y xdg-utils && git config --global user.email \"$GIT_USER_EMAIL\" && git config --global user.name \"$GIT_USER_NAME\" && git config --global --add safe.directory /app && npm run storybook" | ||
ports: | ||
- "6006:6006" | ||
depends_on: | ||
- vue | ||
storybook: | ||
image: node:20 | ||
volumes: | ||
- .:/app | ||
working_dir: /app | ||
environment: | ||
- GIT_USER_EMAIL=${GIT_USER_EMAIL} | ||
- GIT_USER_NAME=${GIT_USER_NAME} | ||
command: sh -c "apt-get update && apt-get install -y xdg-utils && git config --global user.email \"$GIT_USER_EMAIL\" && git config --global user.name \"$GIT_USER_NAME\" && git config --global --add safe.directory /app && npm run storybook" | ||
ports: | ||
- "6006:6006" | ||
depends_on: | ||
- vue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<html lang="pt-BR"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<link rel="icon" href="/favicon.ico"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Vite App</title> | ||
</head> | ||
<body> | ||
<meta name="description" | ||
content="NEI Market Analytics is an open-source project designed to provide comprehensive market value analyses for various financial instruments and digital assets. This repository aims to create a robust platform for tracking and analyzing market trends across multiple sectors."> | ||
<meta name="keywords" | ||
content="market analysis, business insights, NEI Market Analytics, data analysis, market trends"> | ||
<meta property="og:title" content="NEI Market Analytics"> | ||
<meta property="og:description" | ||
content="NEI Market Analytics is an open-source project designed to provide comprehensive market value analyses for various financial instruments and digital assets. This repository aims to create a robust platform for tracking and analyzing market trends across multiple sectors."> | ||
<meta property="og:image" content="/logo.svg"> | ||
<meta property="og:url" content="http://localhost:5173"> | ||
<meta property="og:type" content="website"> | ||
<meta name="robots" content="index, follow"> | ||
<meta name="author" content="Victor Navarro"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<meta http-equiv="refresh" content="30"> | ||
<link rel="canonical" href="http://localhost:5173"> | ||
<link rel="icon" href="/favicon.ico"> | ||
<title>NEI Market Analytics</title> | ||
</head> | ||
|
||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.