Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6651918
feat: category component created
Bazylek12 Jan 24, 2023
168a817
feat: home component created
Bazylek12 Jan 24, 2023
8c7d603
feat: store component created
Bazylek12 Jan 24, 2023
1e7ca1f
feat: components to routing added
Bazylek12 Jan 24, 2023
896a65b
gh pages added
Bazylek12 Jan 24, 2023
c0d51b8
Merge pull request #1 from Bazylek12/feat/empty-pages-created
lwalik Jan 24, 2023
be7e689
feat: categories service created
Bazylek12 Jan 24, 2023
2f353ef
feat: categories model created
Bazylek12 Jan 24, 2023
507747e
feat: header component with navbar implemented
Bazylek12 Jan 24, 2023
aff8be9
feat: footer component created
Bazylek12 Jan 24, 2023
e29d9ae
feat: store model created
Bazylek12 Jan 24, 2023
c9aff87
feat: store service created
Bazylek12 Jan 24, 2023
f2e6b09
feat: footer navigation implemented
Bazylek12 Jan 24, 2023
eb364fd
feat: show/hide functions implemented
Bazylek12 Jan 25, 2023
8ba3ac1
feat: mobile menu implemented
Bazylek12 Jan 25, 2023
b99b02f
Merge pull request #2 from Bazylek12/feat/pages-layout-added
lwalik Jan 25, 2023
7d291e9
Merge branch 'main' into feat/mobile-navigation
Bazylek12 Jan 25, 2023
d09dbbb
Merge pull request #3 from Bazylek12/feat/mobile-navigation
lwalik Jan 25, 2023
63250ed
feat: shop by category section implemented
Bazylek12 Jan 26, 2023
78f3172
feat: store tag model created
Bazylek12 Jan 26, 2023
964e64b
feat: method to get store tags implemented
Bazylek12 Jan 26, 2023
624c65c
coding-standards file added
Bazylek12 Jan 26, 2023
50c19d3
file path changed
Bazylek12 Jan 26, 2023
91894bf
feat(): store with tag query model created
Bazylek12 Jan 26, 2023
49b7341
fix(): Refactor meters to kilometers
Bazylek12 Jan 26, 2023
c64be0c
feat(): store section implemented
Bazylek12 Jan 26, 2023
6e8c3cd
feat(): products service implemented
Bazylek12 Jan 26, 2023
fcd1cd6
feat(): products model implemented
Bazylek12 Jan 26, 2023
d5dcf8f
feat(): products query model implemented
Bazylek12 Jan 26, 2023
33d978b
feat(): category with product query model implemented
Bazylek12 Jan 26, 2023
f905b25
feat(): category with product section implemented
Bazylek12 Jan 26, 2023
4e28f1b
Merge pull request #4 from Bazylek12/feat/home-component-implement
lwalik Jan 29, 2023
da4fd99
Update README.md
Bazylek12 Jan 31, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 1 addition & 27 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1 @@
# NgFreshcardBootstrapTheme

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.3.3.

## Development server

Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.

## Code scaffolding

Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

## Build

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.

## Running unit tests

Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

## Running end-to-end tests

Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.

## Further help

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
Live preview on Vercel: https://project-storefront-freshcart-bootstrap-fawn.vercel.app/
3 changes: 3 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@
],
"scripts": []
}
},
"deploy": {
"builder": "angular-cli-ghpages:deploy"
}
}
}
Expand Down
49 changes: 49 additions & 0 deletions coding-standards.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"entityRelations": {
"component": {
"model": ["PROPERTY"],
"service": ["CONSTRUCTOR"],
"router": ["CONSTRUCTOR"],
"activatedRoute": ["CONSTRUCTOR"]
},
"service": {
"httpClient": ["CONSTRUCTOR"],
"model": ["PARAMETER", "RETURN"]
}
},
"external": {
"httpClient": {
"type": "HttpClient",
"module": "@angular/common/http"
},
"router": {
"type": "Router",
"module": "@angular/router"
},
"activatedRoute": {
"type": "ActivatedRoute",
"module": "@angular/router"
}
},
"entities": {
"component": {
"type": "ANGULAR_COMPONENT",
"folder": "components/$name$",
"config": {
"stylesExtension": "none",
"viewEncapsulation": "None",
"selector": "generated",
"changeDetectionStrategy": "OnPush"
}
},
"model": {
"type": "DATA_STRUCTURE"
},
"service": {
"type": "ANGULAR_SERVICE"
},
"queryModel": {
"type": "DATA_STRUCTURE"
}
}
}
Loading