├── .gitignore ├── .travis.yml ├── Backend ├── .vscode │ └── launch.json ├── GithubHook │ ├── Function.cs │ ├── Model │ │ ├── Commit.cs │ │ └── GithubPayload.cs │ ├── aws-lambda-tools-defaults.json │ └── project.json ├── README.md ├── Ruleset │ ├── Code.ruleset │ └── Test.ruleset ├── Source │ ├── .gitkeep │ ├── AddressService │ │ ├── Function.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── AuthService │ │ ├── CustomAuthorizerHelper.cs │ │ ├── Function.cs │ │ ├── Model │ │ │ └── ResourceAccess.cs │ │ ├── Policy │ │ │ ├── Action.cs │ │ │ ├── Effect.cs │ │ │ └── Resource.cs │ │ ├── Validation │ │ │ ├── AuthTokenType.cs │ │ │ └── Validator.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── EmailService │ │ ├── Function.cs │ │ ├── Mailgun │ │ │ └── MailgunHelper.cs │ │ ├── Model │ │ │ └── SendPayload.cs │ │ ├── Send │ │ │ └── SendCommand.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── ExampleService │ │ ├── Function.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── NotificationService │ │ ├── Function.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── Orchestrator │ │ ├── Function.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── OrderProductService │ │ ├── Function.cs │ │ ├── Read │ │ │ └── ReadCommand.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── OrderService │ │ ├── Create │ │ │ └── CreateCommand.cs │ │ ├── Delete │ │ │ └── DeleteCommand.cs │ │ ├── Function.cs │ │ ├── Model │ │ │ ├── CreatePayload.cs │ │ │ ├── DeletePayload.cs │ │ │ ├── Item.cs │ │ │ └── UpdatePayload.cs │ │ ├── Read │ │ │ └── ReadCommand.cs │ │ ├── Update │ │ │ └── UpdateCommand.cs │ │ ├── VerifyUser │ │ │ └── VerifyUserCommand.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── PaymentService │ │ ├── Charge.cs │ │ ├── Create │ │ │ └── CreateCommand.cs │ │ ├── Function.cs │ │ ├── Model │ │ │ ├── CreatePayload.cs │ │ │ └── UpdatePayload.cs │ │ ├── Read │ │ │ └── ReadCommand.cs │ │ ├── Update │ │ │ └── UpdateCommand.cs │ │ ├── VerifyUser │ │ │ └── VerifyUserCommand.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── ProcessService │ │ ├── Function.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── ProductService │ │ ├── Create │ │ │ └── CreateCommand.cs │ │ ├── Delete │ │ │ └── DeleteCommand.cs │ │ ├── Function.cs │ │ ├── Model │ │ │ ├── CreatePayload.cs │ │ │ ├── DeletePayload.cs │ │ │ └── UpdatePayload.cs │ │ ├── Read │ │ │ └── ReadCommand.cs │ │ ├── Update │ │ │ └── UpdateCommand.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── QueueService │ │ ├── Function.cs │ │ ├── Model │ │ │ └── ReadPayload.cs │ │ ├── Queue │ │ │ └── QueueCommand.cs │ │ ├── Read │ │ │ └── ReadCommand.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json │ ├── Shared │ │ ├── Authentication │ │ │ ├── AuthHelper.cs │ │ │ └── AuthPayload.cs │ │ ├── Command │ │ │ └── CommandContainer.cs │ │ ├── DbAccess │ │ │ └── DbHelper.cs │ │ ├── EnumHelper │ │ │ ├── EnumExtension.cs │ │ │ └── StringValueAttribute.cs │ │ ├── Http │ │ │ ├── HttpCode.cs │ │ │ └── HttpVerb.cs │ │ ├── Interface │ │ │ ├── ICommand.cs │ │ │ └── IModel.cs │ │ ├── LambdaException.cs │ │ ├── LambdaSerializer.cs │ │ ├── Model │ │ │ ├── Address.cs │ │ │ ├── Order.cs │ │ │ ├── OrderedProduct.cs │ │ │ ├── Payment.cs │ │ │ ├── Product.cs │ │ │ ├── QueueProcess.cs │ │ │ └── User.cs │ │ ├── Notification │ │ │ └── NotifyHelper.cs │ │ ├── Queue │ │ │ ├── QueueHelper.cs │ │ │ ├── QueueRequest.cs │ │ │ └── Service.cs │ │ ├── Request │ │ │ ├── Operation.cs │ │ │ ├── PagingInfo.cs │ │ │ ├── Request.cs │ │ │ ├── RequestHelper.cs │ │ │ ├── SearchOperator.cs │ │ │ ├── SearchPayload.cs │ │ │ ├── SearchTerm.cs │ │ │ └── VerifyUserPayload.cs │ │ ├── Response │ │ │ ├── Response.cs │ │ │ └── VerifyResult.cs │ │ ├── Validation │ │ │ ├── AddressAttribute.cs │ │ │ ├── EnumAttribute.cs │ │ │ ├── JsonAttribute.cs │ │ │ ├── ModelValidator.cs │ │ │ ├── RequestValidator.cs │ │ │ └── SearchPayloadValidator.cs │ │ └── project.json │ └── UserService │ │ ├── Delete │ │ └── DeleteCommand.cs │ │ ├── Function.cs │ │ ├── LogIn │ │ └── LogInCommand.cs │ │ ├── Model │ │ ├── DeletePayload.cs │ │ ├── LogInPayload.cs │ │ ├── SignUpPayload.cs │ │ └── UpdatePayload.cs │ │ ├── Read │ │ └── ReadCommand.cs │ │ ├── SignUp │ │ ├── EmailTemplate.cs │ │ └── SignUpCommand.cs │ │ ├── Update │ │ └── UpdateCommand.cs │ │ ├── VerifyEmail │ │ └── VerifyEmailCommand.cs │ │ ├── VerifyUser │ │ └── VerifyUserCommand.cs │ │ ├── aws-lambda-tools-defaults.json │ │ └── project.json ├── Test │ ├── .gitkeep │ ├── AddressService.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── AuthService.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── EmailService.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── ExampleService.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── NotificationService.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── Orchestrator.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── OrderProductService.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── OrderService.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── PaymentService.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── ProcessService.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── ProductService.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── QueueService.Test │ │ ├── FunctionTest.cs │ │ └── project.json │ ├── Shared.Test │ │ ├── AuthHelperTest.cs │ │ ├── CommandContainerTest.cs │ │ ├── EnumHelperTest.cs │ │ ├── LambdaExceptionTest.cs │ │ ├── LambdaSerializerTest.cs │ │ ├── ModelValidatorTest.cs │ │ ├── RequestHelperTest.cs │ │ ├── RequestValidatorTest.cs │ │ ├── SearchPayloadValidatorTest.cs │ │ └── project.json │ └── UserService.Test │ │ ├── FunctionTest.cs │ │ └── project.json ├── global.json └── newservice.sh ├── Frontend ├── .editorconfig ├── angular-cli.json ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── Cart.ts │ │ ├── Item.ts │ │ ├── User.ts │ │ ├── app-routing │ │ │ └── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── cart.service.spec.ts │ │ ├── cart.service.ts │ │ ├── footer │ │ │ ├── footer.component.css │ │ │ ├── footer.component.html │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ ├── item.service.spec.ts │ │ ├── item.service.ts │ │ ├── mock-data │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── mock-movies.ts │ │ │ └── mock-user.ts │ │ ├── navigation-bar │ │ │ ├── navigation-bar.component.css │ │ │ ├── navigation-bar.component.html │ │ │ ├── navigation-bar.component.spec.ts │ │ │ └── navigation-bar.component.ts │ │ ├── register │ │ │ ├── register.component.css │ │ │ ├── register.component.html │ │ │ ├── register.component.spec.ts │ │ │ └── register.component.ts │ │ ├── shopping │ │ │ ├── shopping.component.css │ │ │ ├── shopping.component.html │ │ │ ├── shopping.component.spec.ts │ │ │ └── shopping.component.ts │ │ ├── user-cart │ │ │ ├── user-cart.component.css │ │ │ ├── user-cart.component.html │ │ │ ├── user-cart.component.spec.ts │ │ │ └── user-cart.component.ts │ │ ├── user-login │ │ │ ├── user-login.component.css │ │ │ ├── user-login.component.html │ │ │ ├── user-login.component.spec.ts │ │ │ └── user-login.component.ts │ │ ├── user-orders │ │ │ ├── user-orders.component.css │ │ │ ├── user-orders.component.html │ │ │ ├── user-orders.component.spec.ts │ │ │ └── user-orders.component.ts │ │ ├── user-profile │ │ │ ├── user-profile.component.css │ │ │ ├── user-profile.component.html │ │ │ ├── user-profile.component.spec.ts │ │ │ └── user-profile.component.ts │ │ ├── user.service.spec.ts │ │ ├── user.service.ts │ │ └── welcome │ │ │ ├── welcome.component.css │ │ │ ├── welcome.component.html │ │ │ ├── welcome.component.spec.ts │ │ │ └── welcome.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── css │ │ │ ├── bootstrap-social.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.min.css │ │ │ └── mystyles.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── Loading_icon.gif │ │ │ ├── loading_main.gif │ │ │ └── logo.gif │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ └── tsconfig.json └── tslint.json ├── README.md ├── rest-server-node-express-passport-https-oauth ├── app.js ├── authenticate.js ├── config.js ├── models │ ├── dishes.js │ ├── leadership.js │ ├── promotions.js │ └── user.js ├── package.json ├── public │ └── stylesheets │ │ └── style.css ├── readme.txt ├── routes │ ├── dishRouter.js │ ├── index.js │ ├── leaderRouter.js │ ├── promoRouter.js │ ├── users.js │ └── verify.js ├── views │ ├── error.jade │ ├── index.jade │ └── layout.jade ├── 屏幕快照 2017-04-01 17.07.33.png └── 屏幕快照 2017-04-01 17.12.27.png └── sonar-project.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/.travis.yml -------------------------------------------------------------------------------- /Backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/.vscode/launch.json -------------------------------------------------------------------------------- /Backend/GithubHook/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/GithubHook/Function.cs -------------------------------------------------------------------------------- /Backend/GithubHook/Model/Commit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/GithubHook/Model/Commit.cs -------------------------------------------------------------------------------- /Backend/GithubHook/Model/GithubPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/GithubHook/Model/GithubPayload.cs -------------------------------------------------------------------------------- /Backend/GithubHook/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/GithubHook/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/GithubHook/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/GithubHook/project.json -------------------------------------------------------------------------------- /Backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/README.md -------------------------------------------------------------------------------- /Backend/Ruleset/Code.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Ruleset/Code.ruleset -------------------------------------------------------------------------------- /Backend/Ruleset/Test.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Ruleset/Test.ruleset -------------------------------------------------------------------------------- /Backend/Source/.gitkeep: -------------------------------------------------------------------------------- 1 | Please do NOT delete this file. -------------------------------------------------------------------------------- /Backend/Source/AddressService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AddressService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/AddressService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AddressService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/AddressService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AddressService/project.json -------------------------------------------------------------------------------- /Backend/Source/AuthService/CustomAuthorizerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AuthService/CustomAuthorizerHelper.cs -------------------------------------------------------------------------------- /Backend/Source/AuthService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AuthService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/AuthService/Model/ResourceAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AuthService/Model/ResourceAccess.cs -------------------------------------------------------------------------------- /Backend/Source/AuthService/Policy/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AuthService/Policy/Action.cs -------------------------------------------------------------------------------- /Backend/Source/AuthService/Policy/Effect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AuthService/Policy/Effect.cs -------------------------------------------------------------------------------- /Backend/Source/AuthService/Policy/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AuthService/Policy/Resource.cs -------------------------------------------------------------------------------- /Backend/Source/AuthService/Validation/AuthTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AuthService/Validation/AuthTokenType.cs -------------------------------------------------------------------------------- /Backend/Source/AuthService/Validation/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AuthService/Validation/Validator.cs -------------------------------------------------------------------------------- /Backend/Source/AuthService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AuthService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/AuthService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/AuthService/project.json -------------------------------------------------------------------------------- /Backend/Source/EmailService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/EmailService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/EmailService/Mailgun/MailgunHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/EmailService/Mailgun/MailgunHelper.cs -------------------------------------------------------------------------------- /Backend/Source/EmailService/Model/SendPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/EmailService/Model/SendPayload.cs -------------------------------------------------------------------------------- /Backend/Source/EmailService/Send/SendCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/EmailService/Send/SendCommand.cs -------------------------------------------------------------------------------- /Backend/Source/EmailService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/EmailService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/EmailService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/EmailService/project.json -------------------------------------------------------------------------------- /Backend/Source/ExampleService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ExampleService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/ExampleService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ExampleService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/ExampleService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ExampleService/project.json -------------------------------------------------------------------------------- /Backend/Source/NotificationService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/NotificationService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/NotificationService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/NotificationService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/NotificationService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/NotificationService/project.json -------------------------------------------------------------------------------- /Backend/Source/Orchestrator/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Orchestrator/Function.cs -------------------------------------------------------------------------------- /Backend/Source/Orchestrator/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Orchestrator/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/Orchestrator/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Orchestrator/project.json -------------------------------------------------------------------------------- /Backend/Source/OrderProductService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderProductService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/OrderProductService/Read/ReadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderProductService/Read/ReadCommand.cs -------------------------------------------------------------------------------- /Backend/Source/OrderProductService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderProductService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/OrderProductService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderProductService/project.json -------------------------------------------------------------------------------- /Backend/Source/OrderService/Create/CreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/Create/CreateCommand.cs -------------------------------------------------------------------------------- /Backend/Source/OrderService/Delete/DeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/Delete/DeleteCommand.cs -------------------------------------------------------------------------------- /Backend/Source/OrderService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/OrderService/Model/CreatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/Model/CreatePayload.cs -------------------------------------------------------------------------------- /Backend/Source/OrderService/Model/DeletePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/Model/DeletePayload.cs -------------------------------------------------------------------------------- /Backend/Source/OrderService/Model/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/Model/Item.cs -------------------------------------------------------------------------------- /Backend/Source/OrderService/Model/UpdatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/Model/UpdatePayload.cs -------------------------------------------------------------------------------- /Backend/Source/OrderService/Read/ReadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/Read/ReadCommand.cs -------------------------------------------------------------------------------- /Backend/Source/OrderService/Update/UpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/Update/UpdateCommand.cs -------------------------------------------------------------------------------- /Backend/Source/OrderService/VerifyUser/VerifyUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/VerifyUser/VerifyUserCommand.cs -------------------------------------------------------------------------------- /Backend/Source/OrderService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/OrderService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/OrderService/project.json -------------------------------------------------------------------------------- /Backend/Source/PaymentService/Charge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/PaymentService/Charge.cs -------------------------------------------------------------------------------- /Backend/Source/PaymentService/Create/CreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/PaymentService/Create/CreateCommand.cs -------------------------------------------------------------------------------- /Backend/Source/PaymentService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/PaymentService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/PaymentService/Model/CreatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/PaymentService/Model/CreatePayload.cs -------------------------------------------------------------------------------- /Backend/Source/PaymentService/Model/UpdatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/PaymentService/Model/UpdatePayload.cs -------------------------------------------------------------------------------- /Backend/Source/PaymentService/Read/ReadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/PaymentService/Read/ReadCommand.cs -------------------------------------------------------------------------------- /Backend/Source/PaymentService/Update/UpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/PaymentService/Update/UpdateCommand.cs -------------------------------------------------------------------------------- /Backend/Source/PaymentService/VerifyUser/VerifyUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/PaymentService/VerifyUser/VerifyUserCommand.cs -------------------------------------------------------------------------------- /Backend/Source/PaymentService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/PaymentService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/PaymentService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/PaymentService/project.json -------------------------------------------------------------------------------- /Backend/Source/ProcessService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProcessService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/ProcessService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProcessService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/ProcessService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProcessService/project.json -------------------------------------------------------------------------------- /Backend/Source/ProductService/Create/CreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProductService/Create/CreateCommand.cs -------------------------------------------------------------------------------- /Backend/Source/ProductService/Delete/DeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProductService/Delete/DeleteCommand.cs -------------------------------------------------------------------------------- /Backend/Source/ProductService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProductService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/ProductService/Model/CreatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProductService/Model/CreatePayload.cs -------------------------------------------------------------------------------- /Backend/Source/ProductService/Model/DeletePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProductService/Model/DeletePayload.cs -------------------------------------------------------------------------------- /Backend/Source/ProductService/Model/UpdatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProductService/Model/UpdatePayload.cs -------------------------------------------------------------------------------- /Backend/Source/ProductService/Read/ReadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProductService/Read/ReadCommand.cs -------------------------------------------------------------------------------- /Backend/Source/ProductService/Update/UpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProductService/Update/UpdateCommand.cs -------------------------------------------------------------------------------- /Backend/Source/ProductService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProductService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/ProductService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/ProductService/project.json -------------------------------------------------------------------------------- /Backend/Source/QueueService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/QueueService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/QueueService/Model/ReadPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/QueueService/Model/ReadPayload.cs -------------------------------------------------------------------------------- /Backend/Source/QueueService/Queue/QueueCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/QueueService/Queue/QueueCommand.cs -------------------------------------------------------------------------------- /Backend/Source/QueueService/Read/ReadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/QueueService/Read/ReadCommand.cs -------------------------------------------------------------------------------- /Backend/Source/QueueService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/QueueService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/QueueService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/QueueService/project.json -------------------------------------------------------------------------------- /Backend/Source/Shared/Authentication/AuthHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Authentication/AuthHelper.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Authentication/AuthPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Authentication/AuthPayload.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Command/CommandContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Command/CommandContainer.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/DbAccess/DbHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/DbAccess/DbHelper.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/EnumHelper/EnumExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/EnumHelper/EnumExtension.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/EnumHelper/StringValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/EnumHelper/StringValueAttribute.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Http/HttpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Http/HttpCode.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Http/HttpVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Http/HttpVerb.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Interface/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Interface/ICommand.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Interface/IModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Interface/IModel.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/LambdaException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/LambdaException.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/LambdaSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/LambdaSerializer.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Model/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Model/Address.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Model/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Model/Order.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Model/OrderedProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Model/OrderedProduct.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Model/Payment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Model/Payment.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Model/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Model/Product.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Model/QueueProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Model/QueueProcess.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Model/User.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Notification/NotifyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Notification/NotifyHelper.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Queue/QueueHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Queue/QueueHelper.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Queue/QueueRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Queue/QueueRequest.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Queue/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Queue/Service.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Request/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Request/Operation.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Request/PagingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Request/PagingInfo.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Request/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Request/Request.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Request/RequestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Request/RequestHelper.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Request/SearchOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Request/SearchOperator.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Request/SearchPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Request/SearchPayload.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Request/SearchTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Request/SearchTerm.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Request/VerifyUserPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Request/VerifyUserPayload.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Response/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Response/Response.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Response/VerifyResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Response/VerifyResult.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Validation/AddressAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Validation/AddressAttribute.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Validation/EnumAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Validation/EnumAttribute.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Validation/JsonAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Validation/JsonAttribute.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Validation/ModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Validation/ModelValidator.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Validation/RequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Validation/RequestValidator.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/Validation/SearchPayloadValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/Validation/SearchPayloadValidator.cs -------------------------------------------------------------------------------- /Backend/Source/Shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/Shared/project.json -------------------------------------------------------------------------------- /Backend/Source/UserService/Delete/DeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/Delete/DeleteCommand.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/Function.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/LogIn/LogInCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/LogIn/LogInCommand.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/Model/DeletePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/Model/DeletePayload.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/Model/LogInPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/Model/LogInPayload.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/Model/SignUpPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/Model/SignUpPayload.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/Model/UpdatePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/Model/UpdatePayload.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/Read/ReadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/Read/ReadCommand.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/SignUp/EmailTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/SignUp/EmailTemplate.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/SignUp/SignUpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/SignUp/SignUpCommand.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/Update/UpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/Update/UpdateCommand.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/VerifyEmail/VerifyEmailCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/VerifyEmail/VerifyEmailCommand.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/VerifyUser/VerifyUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/VerifyUser/VerifyUserCommand.cs -------------------------------------------------------------------------------- /Backend/Source/UserService/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /Backend/Source/UserService/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Source/UserService/project.json -------------------------------------------------------------------------------- /Backend/Test/.gitkeep: -------------------------------------------------------------------------------- 1 | Please do NOT delete this file. -------------------------------------------------------------------------------- /Backend/Test/AddressService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/AddressService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/AddressService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/AddressService.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/AuthService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/AuthService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/AuthService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/AuthService.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/EmailService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/EmailService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/EmailService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/EmailService.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/ExampleService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/ExampleService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/ExampleService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/ExampleService.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/NotificationService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/NotificationService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/NotificationService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/NotificationService.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/Orchestrator.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Orchestrator.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/Orchestrator.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Orchestrator.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/OrderProductService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/OrderProductService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/OrderProductService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/OrderProductService.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/OrderService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/OrderService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/OrderService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/OrderService.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/PaymentService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/PaymentService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/PaymentService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/PaymentService.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/ProcessService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/ProcessService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/ProcessService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/ProcessService.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/ProductService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/ProductService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/ProductService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/ProductService.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/QueueService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/QueueService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/QueueService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/QueueService.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/Shared.Test/AuthHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Shared.Test/AuthHelperTest.cs -------------------------------------------------------------------------------- /Backend/Test/Shared.Test/CommandContainerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Shared.Test/CommandContainerTest.cs -------------------------------------------------------------------------------- /Backend/Test/Shared.Test/EnumHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Shared.Test/EnumHelperTest.cs -------------------------------------------------------------------------------- /Backend/Test/Shared.Test/LambdaExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Shared.Test/LambdaExceptionTest.cs -------------------------------------------------------------------------------- /Backend/Test/Shared.Test/LambdaSerializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Shared.Test/LambdaSerializerTest.cs -------------------------------------------------------------------------------- /Backend/Test/Shared.Test/ModelValidatorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Shared.Test/ModelValidatorTest.cs -------------------------------------------------------------------------------- /Backend/Test/Shared.Test/RequestHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Shared.Test/RequestHelperTest.cs -------------------------------------------------------------------------------- /Backend/Test/Shared.Test/RequestValidatorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Shared.Test/RequestValidatorTest.cs -------------------------------------------------------------------------------- /Backend/Test/Shared.Test/SearchPayloadValidatorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Shared.Test/SearchPayloadValidatorTest.cs -------------------------------------------------------------------------------- /Backend/Test/Shared.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/Shared.Test/project.json -------------------------------------------------------------------------------- /Backend/Test/UserService.Test/FunctionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/UserService.Test/FunctionTest.cs -------------------------------------------------------------------------------- /Backend/Test/UserService.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/Test/UserService.Test/project.json -------------------------------------------------------------------------------- /Backend/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/global.json -------------------------------------------------------------------------------- /Backend/newservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Backend/newservice.sh -------------------------------------------------------------------------------- /Frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/.editorconfig -------------------------------------------------------------------------------- /Frontend/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/angular-cli.json -------------------------------------------------------------------------------- /Frontend/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /Frontend/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/e2e/app.po.ts -------------------------------------------------------------------------------- /Frontend/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/e2e/tsconfig.json -------------------------------------------------------------------------------- /Frontend/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/karma.conf.js -------------------------------------------------------------------------------- /Frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/package.json -------------------------------------------------------------------------------- /Frontend/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/protractor.conf.js -------------------------------------------------------------------------------- /Frontend/src/app/Cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/Cart.ts -------------------------------------------------------------------------------- /Frontend/src/app/Item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/Item.ts -------------------------------------------------------------------------------- /Frontend/src/app/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/User.ts -------------------------------------------------------------------------------- /Frontend/src/app/app-routing/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/app-routing/app-routing.module.ts -------------------------------------------------------------------------------- /Frontend/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/app.component.html -------------------------------------------------------------------------------- /Frontend/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/app.component.ts -------------------------------------------------------------------------------- /Frontend/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/app.module.ts -------------------------------------------------------------------------------- /Frontend/src/app/cart.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/cart.service.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/cart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/cart.service.ts -------------------------------------------------------------------------------- /Frontend/src/app/footer/footer.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/app/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/footer/footer.component.html -------------------------------------------------------------------------------- /Frontend/src/app/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/footer/footer.component.ts -------------------------------------------------------------------------------- /Frontend/src/app/item.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/item.service.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/item.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/item.service.ts -------------------------------------------------------------------------------- /Frontend/src/app/mock-data/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/mock-data/1.jpg -------------------------------------------------------------------------------- /Frontend/src/app/mock-data/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/mock-data/2.jpg -------------------------------------------------------------------------------- /Frontend/src/app/mock-data/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/mock-data/3.jpg -------------------------------------------------------------------------------- /Frontend/src/app/mock-data/mock-movies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/mock-data/mock-movies.ts -------------------------------------------------------------------------------- /Frontend/src/app/mock-data/mock-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/mock-data/mock-user.ts -------------------------------------------------------------------------------- /Frontend/src/app/navigation-bar/navigation-bar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/app/navigation-bar/navigation-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/navigation-bar/navigation-bar.component.html -------------------------------------------------------------------------------- /Frontend/src/app/navigation-bar/navigation-bar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/navigation-bar/navigation-bar.component.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/navigation-bar/navigation-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/navigation-bar/navigation-bar.component.ts -------------------------------------------------------------------------------- /Frontend/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/app/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/register/register.component.html -------------------------------------------------------------------------------- /Frontend/src/app/register/register.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/register/register.component.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/register/register.component.ts -------------------------------------------------------------------------------- /Frontend/src/app/shopping/shopping.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/app/shopping/shopping.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/shopping/shopping.component.html -------------------------------------------------------------------------------- /Frontend/src/app/shopping/shopping.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/shopping/shopping.component.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/shopping/shopping.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/shopping/shopping.component.ts -------------------------------------------------------------------------------- /Frontend/src/app/user-cart/user-cart.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/app/user-cart/user-cart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-cart/user-cart.component.html -------------------------------------------------------------------------------- /Frontend/src/app/user-cart/user-cart.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-cart/user-cart.component.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/user-cart/user-cart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-cart/user-cart.component.ts -------------------------------------------------------------------------------- /Frontend/src/app/user-login/user-login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/app/user-login/user-login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-login/user-login.component.html -------------------------------------------------------------------------------- /Frontend/src/app/user-login/user-login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-login/user-login.component.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/user-login/user-login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-login/user-login.component.ts -------------------------------------------------------------------------------- /Frontend/src/app/user-orders/user-orders.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/app/user-orders/user-orders.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-orders/user-orders.component.html -------------------------------------------------------------------------------- /Frontend/src/app/user-orders/user-orders.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-orders/user-orders.component.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/user-orders/user-orders.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-orders/user-orders.component.ts -------------------------------------------------------------------------------- /Frontend/src/app/user-profile/user-profile.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/app/user-profile/user-profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-profile/user-profile.component.html -------------------------------------------------------------------------------- /Frontend/src/app/user-profile/user-profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-profile/user-profile.component.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/user-profile/user-profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user-profile/user-profile.component.ts -------------------------------------------------------------------------------- /Frontend/src/app/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user.service.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/user.service.ts -------------------------------------------------------------------------------- /Frontend/src/app/welcome/welcome.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/app/welcome/welcome.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/welcome/welcome.component.html -------------------------------------------------------------------------------- /Frontend/src/app/welcome/welcome.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/welcome/welcome.component.spec.ts -------------------------------------------------------------------------------- /Frontend/src/app/welcome/welcome.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/app/welcome/welcome.component.ts -------------------------------------------------------------------------------- /Frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/assets/css/bootstrap-social.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/bootstrap-social.css -------------------------------------------------------------------------------- /Frontend/src/assets/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Frontend/src/assets/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Frontend/src/assets/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Frontend/src/assets/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Frontend/src/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/bootstrap.css -------------------------------------------------------------------------------- /Frontend/src/assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /Frontend/src/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /Frontend/src/assets/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Frontend/src/assets/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/font-awesome.css -------------------------------------------------------------------------------- /Frontend/src/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /Frontend/src/assets/css/mystyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/css/mystyles.css -------------------------------------------------------------------------------- /Frontend/src/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Frontend/src/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Frontend/src/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Frontend/src/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Frontend/src/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Frontend/src/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Frontend/src/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Frontend/src/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Frontend/src/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Frontend/src/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Frontend/src/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Frontend/src/assets/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/img/1.jpg -------------------------------------------------------------------------------- /Frontend/src/assets/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/img/2.jpg -------------------------------------------------------------------------------- /Frontend/src/assets/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/img/3.jpg -------------------------------------------------------------------------------- /Frontend/src/assets/img/Loading_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/img/Loading_icon.gif -------------------------------------------------------------------------------- /Frontend/src/assets/img/loading_main.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/img/loading_main.gif -------------------------------------------------------------------------------- /Frontend/src/assets/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/img/logo.gif -------------------------------------------------------------------------------- /Frontend/src/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/js/bootstrap.js -------------------------------------------------------------------------------- /Frontend/src/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /Frontend/src/assets/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/assets/js/npm.js -------------------------------------------------------------------------------- /Frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Frontend/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/environments/environment.ts -------------------------------------------------------------------------------- /Frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/favicon.ico -------------------------------------------------------------------------------- /Frontend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/index.html -------------------------------------------------------------------------------- /Frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/main.ts -------------------------------------------------------------------------------- /Frontend/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/polyfills.ts -------------------------------------------------------------------------------- /Frontend/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/styles.css -------------------------------------------------------------------------------- /Frontend/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/test.ts -------------------------------------------------------------------------------- /Frontend/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/src/tsconfig.json -------------------------------------------------------------------------------- /Frontend/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/Frontend/tslint.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/README.md -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/app.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/authenticate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/authenticate.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/config.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/models/dishes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/models/dishes.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/models/leadership.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/models/leadership.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/models/promotions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/models/promotions.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/models/user.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/package.json -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/public/stylesheets/style.css -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/readme.txt -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/routes/dishRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/routes/dishRouter.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/routes/index.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/routes/leaderRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/routes/leaderRouter.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/routes/promoRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/routes/promoRouter.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/routes/users.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/routes/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/routes/verify.js -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/views/error.jade -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/views/index.jade -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/views/layout.jade -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/屏幕快照 2017-04-01 17.07.33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/屏幕快照 2017-04-01 17.07.33.png -------------------------------------------------------------------------------- /rest-server-node-express-passport-https-oauth/屏幕快照 2017-04-01 17.12.27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/rest-server-node-express-passport-https-oauth/屏幕快照 2017-04-01 17.12.27.png -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmyzheng/Cloud-Based-Full-Stack-Online-Shopping-Platform-Web-Application/HEAD/sonar-project.properties --------------------------------------------------------------------------------