-
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.
Merge branch 'main' into releases/1.0
- Loading branch information
Showing
13 changed files
with
5,747 additions
and
7,043 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: frontend | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: codex | ||
tier: frontend | ||
replicas: 1 | ||
template: | ||
metadata: | ||
labels: | ||
app: codex | ||
tier: frontend | ||
spec: | ||
containers: | ||
- name: app | ||
image: ghcr.io/aulasoftwarelibre/codex:v1.0 | ||
ports: | ||
- containerPort: 3000 |
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,14 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: frontend | ||
labels: | ||
app: codex | ||
tier: frontend | ||
spec: | ||
type: NodePort | ||
ports: | ||
- port: 3000 | ||
selector: | ||
app: codex | ||
tier: frontend |
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 |
---|---|---|
@@ -1 +1 @@ | ||
npx --no -- commitlint --edit ${1} | ||
pnpm dlx commitlint --edit ${1} |
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 +1 @@ | ||
npx lint-staged | ||
pnpm dlx lint-staged |
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
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
"start": "next start", | ||
"lint": "next lint", | ||
"prepare": "husky", | ||
"postinstall": "npx prisma generate", | ||
"postinstall": "pnpm dlx prisma generate", | ||
"test": "vitest", | ||
"coverage": "vitest run --coverage", | ||
"test:ci": "NODE_ENV=test vitest --watch=false", | ||
|
@@ -24,113 +24,114 @@ | |
"build-storybook": "storybook build", | ||
"prisma:migrate": "prisma migrate dev", | ||
"prisma:generate": "prisma generate", | ||
"cli:user:admin": "npx tsx src/core/user/infrastructure/cli/add-user.cli.ts admin", | ||
"cli:user:member": "npx tsx src/core/user/infrastructure/cli/add-user.cli.ts member" | ||
"cli:user:admin": "pnpm dlx tsx src/core/user/infrastructure/cli/add-user.cli.ts admin", | ||
"cli:user:member": "pnpm dlx tsx src/core/user/infrastructure/cli/add-user.cli.ts member" | ||
}, | ||
"dependencies": { | ||
"@aulasoftwarelibre/next-auth-firewall": "1.2.0", | ||
"@auth/core": "^0.30.0", | ||
"@auth/prisma-adapter": "^2.0.0", | ||
"@heroicons/react": "^2.1.3", | ||
"@nextui-org/avatar": "^2.0.27", | ||
"@nextui-org/breadcrumbs": "^2.0.7", | ||
"@nextui-org/button": "^2.0.31", | ||
"@nextui-org/card": "^2.0.28", | ||
"@nextui-org/divider": "^2.0.27", | ||
"@nextui-org/dropdown": "^2.1.23", | ||
"@nextui-org/input": "^2.1.21", | ||
"@nextui-org/kbd": "^2.0.28", | ||
"@nextui-org/link": "^2.0.29", | ||
"@nextui-org/listbox": "^2.1.19", | ||
"@nextui-org/modal": "^2.0.33", | ||
"@nextui-org/navbar": "^2.0.30", | ||
"@nextui-org/progress": "^2.0.28", | ||
"@nextui-org/radio": "^2.0.28", | ||
"@nextui-org/switch": "^2.0.28", | ||
"@nextui-org/system": "^2.1.2", | ||
"@nextui-org/table": "^2.0.33", | ||
"@nextui-org/tabs": "^2.0.29", | ||
"@nextui-org/theme": "^2.2.3", | ||
"@nextui-org/user": "^2.0.28", | ||
"@prisma/client": "^5.13.0", | ||
"@react-aria/visually-hidden": "^3.8.11", | ||
"@auth/core": "^0.34.2", | ||
"@auth/prisma-adapter": "^2.7.4", | ||
"@heroicons/react": "^2.1.5", | ||
"@nextui-org/avatar": "2.0.33", | ||
"@nextui-org/breadcrumbs": "2.0.13", | ||
"@nextui-org/button": "2.0.38", | ||
"@nextui-org/card": "2.0.34", | ||
"@nextui-org/divider": "2.0.32", | ||
"@nextui-org/dropdown": "2.1.31", | ||
"@nextui-org/input": "2.2.5", | ||
"@nextui-org/kbd": "2.0.34", | ||
"@nextui-org/link": "2.0.35", | ||
"@nextui-org/listbox": "2.1.27", | ||
"@nextui-org/modal": "2.0.41", | ||
"@nextui-org/navbar": "2.0.37", | ||
"@nextui-org/progress": "2.0.34", | ||
"@nextui-org/radio": "2.1.5", | ||
"@nextui-org/switch": "2.0.34", | ||
"@nextui-org/system": "^2.2.6", | ||
"@nextui-org/table": "2.0.40", | ||
"@nextui-org/tabs": "2.0.37", | ||
"@nextui-org/theme": "^2.2.11", | ||
"@nextui-org/user": "2.0.34", | ||
"@prisma/client": "^5.22.0", | ||
"@react-aria/visually-hidden": "^3.8.17", | ||
"amazon-buddy": "^2.2.45", | ||
"date-fns": "^3.6.0", | ||
"framer-motion": "^11.1.9", | ||
"next": "14.2.3", | ||
"date-fns": "^4.1.0", | ||
"framer-motion": "^11.11.17", | ||
"next": "14.2.8", | ||
"next-auth": "5.0.0-beta.9", | ||
"next-themes": "^0.3.0", | ||
"nodemailer": "^6.9.13", | ||
"next-themes": "^0.4.3", | ||
"nodemailer": "^6.9.16", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-hot-toast": "^2.4.1", | ||
"server-only": "^0.0.1", | ||
"sharp": "^0.33.3", | ||
"ts-essentials": "^10.0.0", | ||
"sharp": "^0.33.5", | ||
"ts-essentials": "^10.0.3", | ||
"ulid": "^2.3.0", | ||
"use-debounce": "^10.0.0", | ||
"uuid": "^9.0.1", | ||
"use-debounce": "^10.0.4", | ||
"uuid": "^11.0.3", | ||
"zod": "^3.23.8" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^19.3.0", | ||
"@commitlint/config-conventional": "19.2.2", | ||
"@playwright/test": "^1.44.0", | ||
"@storybook/addon-essentials": "^8.0.10", | ||
"@storybook/addon-interactions": "^8.0.10", | ||
"@storybook/addon-links": "^8.0.10", | ||
"@storybook/addon-onboarding": "^8.0.10", | ||
"@storybook/addon-themes": "^8.0.10", | ||
"@storybook/blocks": "^8.0.10", | ||
"@storybook/nextjs": "^8.0.10", | ||
"@storybook/react": "^8.0.10", | ||
"@storybook/testing-library": "^0.2.2", | ||
"@testcontainers/postgresql": "^10.9.0", | ||
"@testing-library/jest-dom": "^6.4.5", | ||
"@testing-library/react": "^15.0.7", | ||
"@commitlint/cli": "^19.5.0", | ||
"@commitlint/config-conventional": "19.4.1", | ||
"@playwright/test": "^1.48.2", | ||
"@storybook/addon-essentials": "^8.4.4", | ||
"@storybook/addon-interactions": "^8.4.4", | ||
"@storybook/addon-links": "^8.4.4", | ||
"@storybook/addon-onboarding": "^8.4.4", | ||
"@storybook/addon-themes": "^8.4.4", | ||
"@storybook/blocks": "^8.4.4", | ||
"@storybook/nextjs": "^8.4.4", | ||
"@storybook/react": "^8.4.4", | ||
"@storybook/test": "^8.4.4", | ||
"@testcontainers/postgresql": "^10.14.0", | ||
"@testing-library/jest-dom": "^6.6.3", | ||
"@testing-library/react": "^16.0.1", | ||
"@types/lodash.clonedeep": "^4.5.9", | ||
"@types/node": "^20.12.11", | ||
"@types/nodemailer": "^6.4.15", | ||
"@types/react": "^18.3.1", | ||
"@types/react-dom": "^18.3.0", | ||
"@types/uuid": "^9.0.8", | ||
"@typescript-eslint/eslint-plugin": "^7.8.0", | ||
"@typescript-eslint/parser": "^7.8.0", | ||
"@vitejs/plugin-react": "^4.2.1", | ||
"@vitest/coverage-v8": "1.6.0", | ||
"@vitest/ui": "1.6.0", | ||
"autoprefixer": "^10.4.19", | ||
"@types/node": "^22.9.0", | ||
"@types/nodemailer": "^6.4.16", | ||
"@types/react": "^18.3.12", | ||
"@types/react-dom": "^18.3.1", | ||
"@types/uuid": "^10.0.0", | ||
"@typescript-eslint/eslint-plugin": "^8.14.0", | ||
"@typescript-eslint/parser": "^8.14.0", | ||
"@vitejs/plugin-react": "^4.3.3", | ||
"@vitest/coverage-v8": "^2.1.5", | ||
"@vitest/ui": "^2.1.5", | ||
"autoprefixer": "^10.4.20", | ||
"dotenv": "^16.4.5", | ||
"eslint": "^8.57.0", | ||
"eslint-config-next": "14.2.3", | ||
"eslint": "^8.57.1", | ||
"eslint-config-next": "14.2.8", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"eslint-plugin-react": "^7.34.1", | ||
"eslint-plugin-simple-import-sort": "^12.1.0", | ||
"eslint-plugin-sort": "^3.0.2", | ||
"eslint-plugin-storybook": "^0.8.0", | ||
"eslint-plugin-unicorn": "^52.0.0", | ||
"eslint-plugin-unused-imports": "^3.2.0", | ||
"husky": "^9.0.11", | ||
"jsdom": "^24.0.0", | ||
"eslint-plugin-import": "^2.31.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"eslint-plugin-react": "^7.37.2", | ||
"eslint-plugin-simple-import-sort": "^12.1.1", | ||
"eslint-plugin-sort": "^3.1.1", | ||
"eslint-plugin-storybook": "^0.11.0", | ||
"eslint-plugin-unicorn": "^55.0.0", | ||
"eslint-plugin-unused-imports": "^4.1.4", | ||
"husky": "^9.1.6", | ||
"jsdom": "^25.0.1", | ||
"just-pnpm": "^1.0.2", | ||
"lint-staged": "^15.2.2", | ||
"lint-staged": "^15.2.10", | ||
"lodash.clonedeep": "^4.5.0", | ||
"nextui-cli": "^0.2.1", | ||
"postcss": "^8.4.38", | ||
"prettier": "^3.2.5", | ||
"prettier-plugin-tailwindcss": "^0.5.14", | ||
"prisma": "^5.13.0", | ||
"rimraf": "^5.0.5", | ||
"storybook": "^8.0.10", | ||
"tailwindcss": "^3.4.3", | ||
"testcontainers": "^10.9.0", | ||
"tsx": "^4.9.3", | ||
"typescript": "^5.4.5", | ||
"vite-tsconfig-paths": "^4.3.2", | ||
"vitest": "1.6.0" | ||
"nextui-cli": "^0.3.5", | ||
"postcss": "^8.4.49", | ||
"prettier": "^3.3.3", | ||
"prettier-plugin-tailwindcss": "^0.6.8", | ||
"prisma": "^5.22.0", | ||
"rimraf": "^6.0.1", | ||
"storybook": "^8.4.4", | ||
"tailwindcss": "^3.4.15", | ||
"testcontainers": "^10.14.0", | ||
"tsx": "^4.19.2", | ||
"typescript": "^5.6.3", | ||
"vite-tsconfig-paths": "^5.1.2", | ||
"vitest": "^2.1.5" | ||
}, | ||
"packageManager": "[email protected]", | ||
"commitlint": { | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
|
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
Oops, something went wrong.