Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,8 @@ testem.log
# System Files
.DS_Store
Thumbs.db

jspm_packages

# Serverless directories
/.serverless
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,8 @@ Follow the steps:
- git clone
- npm i
- ng serve

## CloudFront URL and S3-website links

S3 website URL: http://my-shop-first-app.s3-website-us-east-1.amazonaws.com/
CloudFront URL: https://d396nxwa9zhbbu.cloudfront.net/
20 changes: 5 additions & 15 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"assets": ["src/favicon.ico", "src/assets"],
"styles": [
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
"src/styles.scss"
Expand Down Expand Up @@ -95,10 +92,7 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": [
"src/favicon.ico",
"src/assets"
],
"assets": ["src/favicon.ico", "src/assets"],
"styles": [
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
"src/styles.scss"
Expand All @@ -109,10 +103,7 @@
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
}
},
"e2e": {
Expand All @@ -131,9 +122,8 @@
}
},
"cli": {
"schematicCollections": [
"@angular-eslint/schematics"
]
"schematicCollections": ["@angular-eslint/schematics"],
"analytics": "e2a93ca8-2ab6-4e3f-9dd5-bec342c10316"
},
"schematics": {
"@angular-eslint/schematics:application": {
Expand Down
Loading