chore(branding): rinomina il progetto in CadRoute

This commit is contained in:
2026-03-16 10:31:59 +01:00
parent d529e34249
commit a58a3c438c
4 changed files with 15 additions and 14 deletions

14
sop.md
View File

@@ -1,4 +1,4 @@
# SOP CAD File Router MVP
# SOP CadRoute MVP
## Obiettivo
Realizzare un'app desktop (.exe) che:
@@ -35,8 +35,8 @@ npm -v
## 2. Creazione progetto
```
mkdir cad-file-router
cd cad-file-router
mkdir cadroute
cd cadroute
npm init -y
```
@@ -52,7 +52,7 @@ npm install electron-builder --save-dev
## 3. Struttura progetto
```
cad-file-router
cadroute
├── package.json
├── main.js
@@ -261,7 +261,7 @@ contextBridge.exposeInMainWorld("api", {
`renderer/index.html`
```
<h2>CAD File Router</h2>
<h2>CadRoute</h2>
<button onclick="window.api.selectFolder()">
Process Folder
@@ -298,7 +298,7 @@ Aggiungere nel package.json:
```
"build": {
"appId": "com.cad.router",
"appId": "com.cadroute",
"win": {
"target": "nsis"
}
@@ -315,7 +315,7 @@ Output:
```
dist/
cad-file-router Setup.exe
CadRoute Setup.exe
```
---