Skip to content

Commit 5d3e388

Browse files
Merge pull request #364 from HelderMendes/clean-app-next-v2
feat: migrate app-next to clean branch v2
2 parents 0ed8dc7 + b6e7470 commit 5d3e388

243 files changed

Lines changed: 25225 additions & 306 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app-next/.gitignore

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
# dependencies
2+
/node_modules
3+
/.pnp
4+
.pnp.js
5+
6+
# testing
7+
/coverage
8+
9+
# next.js
10+
/.next/
11+
/out/
12+
13+
# production
14+
/build
15+
16+
# misc
17+
.DS_Store
18+
.vscode
19+
.vscode/
20+
21+
# debug
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
25+
26+
# local env files
27+
.env.local
28+
.env.development.local
29+
.env.test.local
30+
.env.production.local
31+
32+
# package lock file
33+
package-lock.json
34+
yarn.lock
35+
36+
# eslint
37+
.eslintcache
38+
39+
40+
# dependencies
41+
node_modules
42+
node_modules.nosync
43+
44+
/.pnp
45+
.pnp.js
46+
47+
# testing
48+
coverage
49+
50+
# production
51+
build
52+
53+
# misc
54+
.DS_Store
55+
.env.*
56+
.env.local
57+
.env.development.local
58+
.env.test.local
59+
.env.production.local
60+
61+
npm-debug.log*
62+
yarn-debug.log*
63+
yarn-error.log*
64+
65+
__pycache__
66+
67+
migrations
68+
69+
*.ipynb
70+
71+
.idea
72+
.vscode
73+
74+
*.pyc
75+
76+
cache
77+
78+
idea_testing.py
79+
80+
Internal_docs/
81+
82+
flask-cache-dir/
83+
84+
*.pem
85+
86+
script.sh
87+
88+
dev_data/ff\@ff.com/
89+
90+
temp_data/
91+
92+
.flaskenv
93+
.pytest_cache
94+
95+
users.sql
96+
node_modules
97+
node_modules.nosync
98+
venv
99+
100+
101+
openml.db
102+
103+
104+
start_macOs_Intell/*
105+
106+
start_macOS_M4/*
107+

app-next/.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"plugins": ["prettier-plugin-tailwindcss"]
3+
}

app-next/README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
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+
3+
## Getting Started
4+
5+
First, run the development server:
6+
7+
```bash
8+
npm run dev
9+
# or
10+
yarn dev
11+
# or
12+
pnpm dev
13+
# or
14+
bun dev
15+
```
16+
17+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18+
19+
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
20+
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+
23+
## Learn More
24+
25+
To learn more about Next.js, take a look at the following resources:
26+
27+
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28+
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
29+
30+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
31+
32+
## Deploy on Vercel
33+
34+
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.
35+
36+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.

app-next/components.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "",
8+
"css": "src/app/globals.css",
9+
"baseColor": "neutral",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"iconLibrary": "lucide",
14+
"aliases": {
15+
"components": "@/components",
16+
"utils": "@/lib/utils",
17+
"ui": "@/components/ui",
18+
"lib": "@/lib",
19+
"hooks": "@/hooks"
20+
},
21+
"registries": {}
22+
}
23+
{
24+
"$schema": "https://ui.shadcn.com/schema.json",
25+
"style": "new-york",
26+
"rsc": true,
27+
"tsx": true,
28+
"tailwind": {
29+
"config": "",
30+
"css": "src/app/globals.css",
31+
"baseColor": "neutral",
32+
"cssVariables": true,
33+
"prefix": ""
34+
},
35+
"iconLibrary": "lucide",
36+
"aliases": {
37+
"components": "@/components",
38+
"utils": "@/lib/utils",
39+
"ui": "@/components/ui",
40+
"lib": "@/lib",
41+
"hooks": "@/hooks"
42+
},
43+
"registries": {}
44+
}

0 commit comments

Comments
 (0)