chore(branding): rinomina il progetto in CadRoute
This commit is contained in:
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "progetto",
|
"name": "cadroute",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "progetto",
|
"name": "cadroute",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "progetto",
|
"name": "cadroute",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "CAD File Router MVP",
|
"description": "CadRoute MVP",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "env -u ELECTRON_RUN_AS_NODE electron .",
|
"dev": "env -u ELECTRON_RUN_AS_NODE electron .",
|
||||||
@@ -12,7 +12,8 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"build": {
|
"build": {
|
||||||
"appId": "com.cad.router",
|
"appId": "com.cadroute",
|
||||||
|
"productName": "CadRoute",
|
||||||
"win": {
|
"win": {
|
||||||
"target": "nsis"
|
"target": "nsis"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>CAD File Router</title>
|
<title>CadRoute</title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
@@ -255,7 +255,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main class="page">
|
<main class="page">
|
||||||
<h1>Smistatore automatico</h1>
|
<h1>CadRoute - Smistatore automatico</h1>
|
||||||
<p>Seleziona una cartella o uno ZIP con i disegni da smistare</p>
|
<p>Seleziona una cartella o uno ZIP con i disegni da smistare</p>
|
||||||
|
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
|
|||||||
14
sop.md
14
sop.md
@@ -1,4 +1,4 @@
|
|||||||
# SOP – CAD File Router MVP
|
# SOP – CadRoute MVP
|
||||||
|
|
||||||
## Obiettivo
|
## Obiettivo
|
||||||
Realizzare un'app desktop (.exe) che:
|
Realizzare un'app desktop (.exe) che:
|
||||||
@@ -35,8 +35,8 @@ npm -v
|
|||||||
## 2. Creazione progetto
|
## 2. Creazione progetto
|
||||||
|
|
||||||
```
|
```
|
||||||
mkdir cad-file-router
|
mkdir cadroute
|
||||||
cd cad-file-router
|
cd cadroute
|
||||||
npm init -y
|
npm init -y
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -52,7 +52,7 @@ npm install electron-builder --save-dev
|
|||||||
## 3. Struttura progetto
|
## 3. Struttura progetto
|
||||||
|
|
||||||
```
|
```
|
||||||
cad-file-router
|
cadroute
|
||||||
│
|
│
|
||||||
├── package.json
|
├── package.json
|
||||||
├── main.js
|
├── main.js
|
||||||
@@ -261,7 +261,7 @@ contextBridge.exposeInMainWorld("api", {
|
|||||||
`renderer/index.html`
|
`renderer/index.html`
|
||||||
|
|
||||||
```
|
```
|
||||||
<h2>CAD File Router</h2>
|
<h2>CadRoute</h2>
|
||||||
|
|
||||||
<button onclick="window.api.selectFolder()">
|
<button onclick="window.api.selectFolder()">
|
||||||
Process Folder
|
Process Folder
|
||||||
@@ -298,7 +298,7 @@ Aggiungere nel package.json:
|
|||||||
|
|
||||||
```
|
```
|
||||||
"build": {
|
"build": {
|
||||||
"appId": "com.cad.router",
|
"appId": "com.cadroute",
|
||||||
"win": {
|
"win": {
|
||||||
"target": "nsis"
|
"target": "nsis"
|
||||||
}
|
}
|
||||||
@@ -315,7 +315,7 @@ Output:
|
|||||||
|
|
||||||
```
|
```
|
||||||
dist/
|
dist/
|
||||||
cad-file-router Setup.exe
|
CadRoute Setup.exe
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
Reference in New Issue
Block a user