Skip to content

Commit bcb867f

Browse files
Mariela TihovaMariela Tihova
authored andcommitted
Adding new folder structure for Sales grid project
1 parent 5d6838c commit bcb867f

44 files changed

Lines changed: 12683 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# SalesGridApp
2+
3+
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.0.2.
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: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"sales-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/sales-grid-app",
21+
"index": "src/index.html",
22+
"browser": "src/main.ts",
23+
"polyfills": ["zone.js"],
24+
"tsConfig": "tsconfig.app.json",
25+
"inlineStyleLanguage": "scss",
26+
"assets": [
27+
{
28+
"glob": "**/*",
29+
"input": "public"
30+
}
31+
],
32+
"styles": ["src/styles.scss"],
33+
"scripts": ["./node_modules/hammerjs/hammer.min.js"],
34+
"server": "src/main.server.ts",
35+
"prerender": true,
36+
"ssr": {
37+
"entry": "src/server.ts"
38+
},
39+
"stylePreprocessorOptions": {
40+
"includePaths": ["node_modules"]
41+
},
42+
"outputMode": "static"
43+
},
44+
"configurations": {
45+
"production": {
46+
"budgets": [
47+
{
48+
"type": "initial",
49+
"maximumWarning": "11MB",
50+
"maximumError": "12MB"
51+
},
52+
{
53+
"type": "anyComponentStyle",
54+
"maximumWarning": "14MB",
55+
"maximumError": "15MB"
56+
}
57+
],
58+
"outputHashing": "all"
59+
},
60+
"development": {
61+
"optimization": false,
62+
"extractLicenses": false,
63+
"sourceMap": true
64+
}
65+
},
66+
"defaultConfiguration": "production"
67+
},
68+
"serve": {
69+
"builder": "@angular/build:dev-server",
70+
"configurations": {
71+
"production": {
72+
"buildTarget": "sales-grid:build:production"
73+
},
74+
"development": {
75+
"buildTarget": "sales-grid:build:development"
76+
}
77+
},
78+
"defaultConfiguration": "development"
79+
},
80+
"extract-i18n": {
81+
"builder": "@angular/build:extract-i18n"
82+
},
83+
"test": {
84+
"builder": "@angular/build:karma",
85+
"options": {
86+
"polyfills": ["zone.js", "zone.js/testing"],
87+
"tsConfig": "tsconfig.spec.json",
88+
"inlineStyleLanguage": "scss",
89+
"assets": [
90+
{
91+
"glob": "**/*",
92+
"input": "public"
93+
}
94+
],
95+
"styles": ["src/styles.scss"],
96+
"scripts": ["./node_modules/hammerjs/hammer.min.js"],
97+
"stylePreprocessorOptions": {
98+
"includePaths": ["node_modules"]
99+
}
100+
}
101+
}
102+
}
103+
}
104+
},
105+
"schematics": {
106+
"@schematics/angular:component": {
107+
"type": "component"
108+
},
109+
"@schematics/angular:directive": {
110+
"type": "directive"
111+
},
112+
"@schematics/angular:service": {
113+
"type": "service"
114+
},
115+
"@schematics/angular:guard": {
116+
"typeSeparator": "."
117+
},
118+
"@schematics/angular:interceptor": {
119+
"typeSeparator": "."
120+
},
121+
"@schematics/angular:module": {
122+
"typeSeparator": "."
123+
},
124+
"@schematics/angular:pipe": {
125+
"typeSeparator": "."
126+
},
127+
"@schematics/angular:resolver": {
128+
"typeSeparator": "."
129+
}
130+
}
131+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "14.3.1",
3+
"project": {
4+
"defaultPort": 4200,
5+
"framework": "angular",
6+
"projectType": "igx-ts",
7+
"projectTemplate": "ng-cli",
8+
"theme": "Custom",
9+
"isBundle": false,
10+
"bundleFilePath": "",
11+
"igniteuiSource": "",
12+
"components": [],
13+
"sourceFiles": [],
14+
"isShowcase": false,
15+
"version": ""
16+
},
17+
"build": {},
18+
"packagesInstalled": true
19+
}

0 commit comments

Comments
 (0)