Skip to content

Commit

Permalink
feat: Integración parcial del sistema de ventas con el back end
Browse files Browse the repository at this point in the history
  • Loading branch information
BarraR3port committed Jun 11, 2024
1 parent 7dcfb82 commit 6de32fd
Show file tree
Hide file tree
Showing 18 changed files with 13,664 additions and 13,714 deletions.
12 changes: 11 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@
}
},
"files": {
"ignore": ["node_modules/**", "build/**", "out/**", ".next/**", "coverage/**", "dist/**", "src-tauri/target/**"]
"ignore": [
"node_modules/**",
"build/**",
"out/**",
".next/**",
"coverage/**",
"dist/**",
"src-tauri/target/**",
"src-tauri/gen/**",
".vscode"
]
}
}
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const nextConfig = {
output: "export",
distDir: "dist",
env: {
API_URL: "https://botilleria-admin.vercel.app"
API_URL: process.env.API_URL
}
};

Expand Down
8 changes: 3 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"clsx": "2.0.0",
"cmdk": "0.2.0",
"date-fns": "2.30.0",
"framer-motion": "^11.2.10",
"js-cookie": "3.0.5",
"lodash": "4.17.21",
"lucide-react": "0.263.1",
Expand Down Expand Up @@ -109,8 +110,5 @@
"taze": "0.11.2",
"typescript": "5.1.6"
},
"trustedDependencies": [
"@biomejs/biome",
"sharp"
]
}
"trustedDependencies": ["@biomejs/biome", "sharp"]
}
3,360 changes: 3,359 additions & 1 deletion src-tauri/gen/schemas/acl-manifests.json

Large diffs are not rendered by default.

34 changes: 33 additions & 1 deletion src-tauri/gen/schemas/capabilities.json
Original file line number Diff line number Diff line change
@@ -1 +1,33 @@
{"main-capability":{"identifier":"main-capability","description":"Capability for the main window","remote":{"urls":["http://localhost:3001","https://botilleria-admin.vercel.app"]},"local":true,"windows":["main"],"permissions":["path:default","event:default","window:default","app:default","resources:default","menu:default","tray:default","window:allow-set-title","os:allow-os-type","os:allow-arch","window:allow-start-dragging","window:allow-toggle-maximize","window:allow-minimize","window:allow-close","window:allow-center","log:default","log:default","shell:allow-open",{"identifier":"http:default","allow":[{"url":"http://localhost:3001"},{"url":"https://botilleria-admin.vercel.app"}]}]}}
{
"main-capability": {
"identifier": "main-capability",
"description": "Capability for the main window",
"remote": { "urls": ["http://localhost:3001", "https://botilleria-admin.vercel.app"] },
"local": true,
"windows": ["main"],
"permissions": [
"path:default",
"event:default",
"window:default",
"app:default",
"resources:default",
"menu:default",
"tray:default",
"window:allow-set-title",
"os:allow-os-type",
"os:allow-arch",
"window:allow-start-dragging",
"window:allow-toggle-maximize",
"window:allow-minimize",
"window:allow-close",
"window:allow-center",
"log:default",
"log:default",
"shell:allow-open",
{
"identifier": "http:default",
"allow": [{ "url": "http://localhost:3001" }, { "url": "https://botilleria-admin.vercel.app" }]
}
]
}
}
Loading

0 comments on commit 6de32fd

Please sign in to comment.