Skip to content

Commit a001cbb

Browse files
Mariela TihovaMariela Tihova
authored andcommitted
Adding new folder structure for Fleet Management grid project
1 parent 3d46d4c commit a001cbb

202 files changed

Lines changed: 11796 additions & 0 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.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
legacy-peer-deps=true
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# MasterDetailGrid
2+
3+
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.0.3.
4+
5+
## Development server
6+
7+
To start a local development server, run:
8+
9+
```bash
10+
ng serve
11+
```
12+
13+
Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
14+
15+
## Code scaffolding
16+
17+
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
18+
19+
```bash
20+
ng generate component component-name
21+
```
22+
23+
For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
24+
25+
```bash
26+
ng generate --help
27+
```
28+
29+
## Building
30+
31+
To build the project run:
32+
33+
```bash
34+
ng build
35+
```
36+
37+
This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.
38+
39+
## Running unit tests
40+
41+
To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
42+
43+
```bash
44+
ng test
45+
```
46+
47+
## Running end-to-end tests
48+
49+
For end-to-end (e2e) testing, run:
50+
51+
```bash
52+
ng e2e
53+
```
54+
55+
Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
56+
57+
## Additional Resources
58+
59+
For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"master-detail-grid": {
7+
"projectType": "application",
8+
"schematics": {
9+
"@schematics/angular:component": {
10+
"style": "scss"
11+
}
12+
},
13+
"root": "",
14+
"sourceRoot": "src",
15+
"prefix": "app",
16+
"architect": {
17+
"build": {
18+
"builder": "@angular/build:application",
19+
"options": {
20+
"outputPath": "dist/master-detail-grid",
21+
"index": "src/index.html",
22+
"browser": "src/main.ts",
23+
"polyfills": [
24+
"zone.js"
25+
],
26+
"tsConfig": "tsconfig.app.json",
27+
"inlineStyleLanguage": "scss",
28+
"assets": [
29+
{
30+
"glob": "**/*",
31+
"input": "public"
32+
}
33+
],
34+
"styles": [
35+
"src/styles.scss"
36+
],
37+
"stylePreprocessorOptions": {
38+
"includePaths": [
39+
"node_modules"
40+
]
41+
},
42+
"scripts": [],
43+
"server": "src/main.server.ts",
44+
"outputMode": "static",
45+
"ssr": {
46+
"entry": "src/server.ts"
47+
}
48+
},
49+
"configurations": {
50+
"production": {
51+
"budgets": [
52+
{
53+
"type": "initial",
54+
"maximumWarning": "10mb",
55+
"maximumError": "11MB"
56+
},
57+
{
58+
"type": "anyComponentStyle",
59+
"maximumWarning": "10mb",
60+
"maximumError": "11mb"
61+
}
62+
],
63+
"outputHashing": "all"
64+
},
65+
"development": {
66+
"optimization": false,
67+
"extractLicenses": false,
68+
"sourceMap": true
69+
}
70+
},
71+
"defaultConfiguration": "production"
72+
},
73+
"serve": {
74+
"builder": "@angular/build:dev-server",
75+
"configurations": {
76+
"production": {
77+
"buildTarget": "master-detail-grid:build:production"
78+
},
79+
"development": {
80+
"buildTarget": "master-detail-grid:build:development"
81+
}
82+
},
83+
"defaultConfiguration": "development"
84+
},
85+
"extract-i18n": {
86+
"builder": "@angular/build:extract-i18n"
87+
},
88+
"test": {
89+
"builder": "@angular/build:karma",
90+
"options": {
91+
"polyfills": [
92+
"zone.js",
93+
"zone.js/testing"
94+
],
95+
"tsConfig": "tsconfig.spec.json",
96+
"inlineStyleLanguage": "scss",
97+
"assets": [
98+
{
99+
"glob": "**/*",
100+
"input": "public"
101+
}
102+
],
103+
"styles": [
104+
"src/styles.scss"
105+
],
106+
"scripts": []
107+
}
108+
}
109+
}
110+
}
111+
},
112+
"cli": {
113+
"analytics": false
114+
},
115+
"schematics": {
116+
"@schematics/angular:component": {
117+
"type": "component"
118+
},
119+
"@schematics/angular:directive": {
120+
"type": "directive"
121+
},
122+
"@schematics/angular:service": {
123+
"type": "service"
124+
},
125+
"@schematics/angular:guard": {
126+
"typeSeparator": "."
127+
},
128+
"@schematics/angular:interceptor": {
129+
"typeSeparator": "."
130+
},
131+
"@schematics/angular:module": {
132+
"typeSeparator": "."
133+
},
134+
"@schematics/angular:pipe": {
135+
"typeSeparator": "."
136+
},
137+
"@schematics/angular:resolver": {
138+
"typeSeparator": "."
139+
}
140+
}
141+
}

0 commit comments

Comments
 (0)