2 |
3 |
Orders Application
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/micro-frontend-app-orders/src/app/orders/orders.component.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bmagrys/micro-frontend-architecture/97e5f84575040da2fd3331218194b0caf4cf9f5e/micro-frontend-app-orders/src/app/orders/orders.component.scss
--------------------------------------------------------------------------------
/micro-frontend-app-orders/src/app/orders/orders.component.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 |
3 | @Component({
4 | selector: 'app-orders',
5 | templateUrl: './orders.component.html',
6 | styleUrls: ['./orders.component.scss'],
7 | })
8 | export class OrdersComponent {
9 | }
10 |
--------------------------------------------------------------------------------
/micro-frontend-app-orders/src/app/orders/orders.module.ts:
--------------------------------------------------------------------------------
1 | import { CommonModule } from '@angular/common';
2 | import { NgModule } from '@angular/core';
3 |
4 | import { OrdersRoutingModule } from './orders-routing.module';
5 | import { OrdersComponent } from './orders.component';
6 |
7 | @NgModule({
8 | declarations: [OrdersComponent],
9 | imports: [
10 | CommonModule,
11 | OrdersRoutingModule,
12 | ],
13 | })
14 | export class OrdersModule {
15 | }
16 |
--------------------------------------------------------------------------------
/micro-frontend-app-orders/src/app/shared/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bmagrys/micro-frontend-architecture/97e5f84575040da2fd3331218194b0caf4cf9f5e/micro-frontend-app-orders/src/app/shared/.gitkeep
--------------------------------------------------------------------------------
/micro-frontend-app-orders/src/assets/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bmagrys/micro-frontend-architecture/97e5f84575040da2fd3331218194b0caf4cf9f5e/micro-frontend-app-orders/src/assets/.gitkeep
--------------------------------------------------------------------------------
/micro-frontend-app-orders/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true,
3 | APP_URL: 'orders',
4 | };
5 |
--------------------------------------------------------------------------------
/micro-frontend-app-orders/src/environments/environment.ts:
--------------------------------------------------------------------------------
1 | // This file can be replaced during build by using the `fileReplacements` array.
2 | // `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
3 | // The list of file replacements can be found in `angular.json`.
4 |
5 | export const environment = {
6 | production: false,
7 | APP_URL: 'orders',
8 | };
9 |
10 | /*
11 | * For easier debugging in development mode, you can import the following file
12 | * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
13 | *
14 | * This import should be commented out in production mode because it will have a negative impact
15 | * on performance if an error is thrown.
16 | */
17 | // import 'zone.js/dist/zone-error'; // Included with Angular CLI.
18 |
--------------------------------------------------------------------------------
/micro-frontend-app-orders/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bmagrys/micro-frontend-architecture/97e5f84575040da2fd3331218194b0caf4cf9f5e/micro-frontend-app-orders/src/favicon.ico
--------------------------------------------------------------------------------
/micro-frontend-app-orders/src/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |