├── .dockerignore ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Directory.Build.props ├── LICENSE ├── README.md ├── blazing-backend.sln ├── deploy ├── delivery.yaml ├── frontend.yaml ├── manager.yaml ├── menu.yaml ├── monitor.yaml └── orders.yaml ├── docker-compose.yaml ├── docker ├── Dockerfile.delivery ├── Dockerfile.manager ├── Dockerfile.menu ├── Dockerfile.orders └── Dockerfile.server ├── protos ├── delivery.proto ├── latlng.proto ├── menu.proto ├── money.proto └── orders.proto └── src ├── BlazingComponents ├── BlazingComponents.csproj ├── TemplatedDialog.razor └── TemplatedList.razor ├── BlazingPizza.Client ├── App.razor ├── BlazingPizza.Client.csproj ├── JSRuntimeExtensions.cs ├── OrderState.cs ├── Pages │ ├── Checkout.razor │ ├── Index.razor │ ├── MyOrders.razor │ └── OrderDetails.razor ├── Program.cs ├── Properties │ └── launchSettings.json ├── ServerAuthenticationStateProvider.cs ├── Shared │ ├── AddressEditor.razor │ ├── ConfigurePizzaDialog.razor │ ├── ConfiguredPizzaItem.razor │ ├── LoginDisplay.razor │ ├── MainLayout.razor │ └── OrderReview.razor ├── Startup.cs ├── _Imports.razor └── wwwroot │ ├── css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── font │ │ ├── quicksand-v8-latin-300.woff │ │ ├── quicksand-v8-latin-300.woff2 │ │ ├── quicksand-v8-latin-500.woff │ │ ├── quicksand-v8-latin-500.woff2 │ │ ├── quicksand-v8-latin-700.woff │ │ ├── quicksand-v8-latin-700.woff2 │ │ ├── quicksand-v8-latin-regular.woff │ │ ├── quicksand-v8-latin-regular.woff2 │ │ └── quicksand.css │ └── site.css │ ├── img │ ├── bike.svg │ ├── icon-512.png │ ├── logo.svg │ ├── pizza-slice.svg │ ├── pizzas │ │ ├── bacon.jpg │ │ ├── brit.jpg │ │ ├── cheese.jpg │ │ ├── margherita.jpg │ │ ├── meaty.jpg │ │ ├── mushroom.jpg │ │ ├── pepperoni.jpg │ │ └── salad.jpg │ └── user.svg │ ├── index.html │ ├── manifest.json │ └── service-worker.js ├── BlazingPizza.ComponentsLibrary ├── BlazingPizza.ComponentsLibrary.csproj ├── LocalStorage.cs ├── Map │ ├── Map.razor │ ├── Marker.cs │ └── Point.cs └── wwwroot │ ├── deliveryMap.js │ ├── leaflet │ ├── images │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ ├── leaflet.css │ └── leaflet.js │ ├── localStorage.js │ └── pushNotifications.js ├── BlazingPizza.DeliveryService ├── Address.cs ├── BlazingPizza.DeliveryService.csproj ├── ConfigurationExtensions.cs ├── DeliveryServiceImpl.cs ├── LatLong.cs ├── Order.cs ├── OrderStatus.cs ├── Pizza.cs ├── PizzaMaker.cs ├── PizzaSpecial.cs ├── PizzaTopping.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── Topping.cs ├── appsettings.Development.json └── appsettings.json ├── BlazingPizza.MenuService ├── BlazingPizza.MenuService.csproj ├── MenuServiceImpl.cs ├── PizzaSpecial.cs ├── PizzaStoreContext.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── SeedData.cs ├── Startup.Secret.cs ├── Startup.cs ├── Topping.cs ├── appsettings.Development.json └── appsettings.json ├── BlazingPizza.OrderClient ├── BlazingPizza.OrderClient.csproj └── Program.cs ├── BlazingPizza.OrderService ├── Address.cs ├── BlazingPizza.OrderService.csproj ├── ConfigurationExtensions.cs ├── LatLong.cs ├── Order.cs ├── OrderServiceImpl.cs ├── Pizza.cs ├── PizzaSpecial.cs ├── PizzaStoreContext.cs ├── PizzaTopping.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.Secret.cs ├── Startup.cs ├── Topping.cs ├── appsettings.Development.json └── appsettings.json ├── BlazingPizza.PizzaManager ├── App.razor ├── BlazingPizza.PizzaManager.csproj ├── ConfigurationExtensions.cs ├── Pages │ ├── Error.razor │ ├── Index.razor │ └── _Host.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── Shared │ ├── MainLayout.razor │ └── NavMenu.razor ├── Startup.Secret.cs ├── Startup.cs ├── _Imports.razor ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ └── site.css │ └── favicon.ico ├── BlazingPizza.Server ├── BlazingPizza.Server.csproj ├── ConfigurationExtensions.cs ├── NotificationsController.cs ├── OrdersController.cs ├── PizzaStoreContext.cs ├── PizzasController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── SpecialsController.cs ├── Startup.Secret.cs ├── Startup.cs ├── TestAuthenticationHandler.cs ├── ToppingsController.cs ├── UserController.cs ├── appsettings.Development.json └── appsettings.json └── BlazingPizza.Shared ├── Address.cs ├── BlazingPizza.Shared.csproj ├── LatLong.cs ├── NotificationSubscription.cs ├── Order.cs ├── OrderWithStatus.cs ├── Pizza.cs ├── PizzaSpecial.cs ├── PizzaTopping.cs ├── Topping.cs └── UserInfo.cs /.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/README.md -------------------------------------------------------------------------------- /blazing-backend.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/blazing-backend.sln -------------------------------------------------------------------------------- /deploy/delivery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/deploy/delivery.yaml -------------------------------------------------------------------------------- /deploy/frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/deploy/frontend.yaml -------------------------------------------------------------------------------- /deploy/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/deploy/manager.yaml -------------------------------------------------------------------------------- /deploy/menu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/deploy/menu.yaml -------------------------------------------------------------------------------- /deploy/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/deploy/monitor.yaml -------------------------------------------------------------------------------- /deploy/orders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/deploy/orders.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docker/Dockerfile.delivery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/docker/Dockerfile.delivery -------------------------------------------------------------------------------- /docker/Dockerfile.manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/docker/Dockerfile.manager -------------------------------------------------------------------------------- /docker/Dockerfile.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/docker/Dockerfile.menu -------------------------------------------------------------------------------- /docker/Dockerfile.orders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/docker/Dockerfile.orders -------------------------------------------------------------------------------- /docker/Dockerfile.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/docker/Dockerfile.server -------------------------------------------------------------------------------- /protos/delivery.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/protos/delivery.proto -------------------------------------------------------------------------------- /protos/latlng.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/protos/latlng.proto -------------------------------------------------------------------------------- /protos/menu.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/protos/menu.proto -------------------------------------------------------------------------------- /protos/money.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/protos/money.proto -------------------------------------------------------------------------------- /protos/orders.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/protos/orders.proto -------------------------------------------------------------------------------- /src/BlazingComponents/BlazingComponents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingComponents/BlazingComponents.csproj -------------------------------------------------------------------------------- /src/BlazingComponents/TemplatedDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingComponents/TemplatedDialog.razor -------------------------------------------------------------------------------- /src/BlazingComponents/TemplatedList.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingComponents/TemplatedList.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/App.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/BlazingPizza.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/BlazingPizza.Client.csproj -------------------------------------------------------------------------------- /src/BlazingPizza.Client/JSRuntimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/JSRuntimeExtensions.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Client/OrderState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/OrderState.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Pages/Checkout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Pages/Checkout.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Pages/Index.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Pages/MyOrders.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Pages/MyOrders.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Pages/OrderDetails.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Pages/OrderDetails.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Program.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/BlazingPizza.Client/ServerAuthenticationStateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/ServerAuthenticationStateProvider.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Shared/AddressEditor.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Shared/AddressEditor.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Shared/ConfigurePizzaDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Shared/ConfigurePizzaDialog.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Shared/ConfiguredPizzaItem.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Shared/ConfiguredPizzaItem.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Shared/LoginDisplay.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Shared/LoginDisplay.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Shared/OrderReview.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Shared/OrderReview.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/Startup.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/_Imports.razor -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-300.woff -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-300.woff2 -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-500.woff -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-500.woff2 -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-700.woff -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-700.woff2 -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-regular.woff -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/font/quicksand-v8-latin-regular.woff2 -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/font/quicksand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/font/quicksand.css -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/bike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/bike.svg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/icon-512.png -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/logo.svg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/pizza-slice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/pizza-slice.svg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/pizzas/bacon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/pizzas/bacon.jpg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/pizzas/brit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/pizzas/brit.jpg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/pizzas/cheese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/pizzas/cheese.jpg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/pizzas/margherita.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/pizzas/margherita.jpg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/pizzas/meaty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/pizzas/meaty.jpg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/pizzas/mushroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/pizzas/mushroom.jpg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/pizzas/pepperoni.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/pizzas/pepperoni.jpg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/pizzas/salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/pizzas/salad.jpg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/img/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/img/user.svg -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/index.html -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/manifest.json -------------------------------------------------------------------------------- /src/BlazingPizza.Client/wwwroot/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Client/wwwroot/service-worker.js -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/BlazingPizza.ComponentsLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/BlazingPizza.ComponentsLibrary.csproj -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/LocalStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/LocalStorage.cs -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/Map/Map.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/Map/Map.razor -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/Map/Marker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/Map/Marker.cs -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/Map/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/Map/Point.cs -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/wwwroot/deliveryMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/wwwroot/deliveryMap.js -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/images/layers.png -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/leaflet.css -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/wwwroot/leaflet/leaflet.js -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/wwwroot/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/wwwroot/localStorage.js -------------------------------------------------------------------------------- /src/BlazingPizza.ComponentsLibrary/wwwroot/pushNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.ComponentsLibrary/wwwroot/pushNotifications.js -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/Address.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/BlazingPizza.DeliveryService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/BlazingPizza.DeliveryService.csproj -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/DeliveryServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/DeliveryServiceImpl.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/LatLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/LatLong.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/Order.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/OrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/OrderStatus.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/Pizza.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/PizzaMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/PizzaMaker.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/PizzaSpecial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/PizzaSpecial.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/PizzaTopping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/PizzaTopping.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/Program.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/Startup.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/Topping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/Topping.cs -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/appsettings.Development.json -------------------------------------------------------------------------------- /src/BlazingPizza.DeliveryService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.DeliveryService/appsettings.json -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/BlazingPizza.MenuService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/BlazingPizza.MenuService.csproj -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/MenuServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/MenuServiceImpl.cs -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/PizzaSpecial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/PizzaSpecial.cs -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/PizzaStoreContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/PizzaStoreContext.cs -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/Program.cs -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/SeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/SeedData.cs -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/Startup.Secret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/Startup.Secret.cs -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/Startup.cs -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/Topping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/Topping.cs -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/appsettings.Development.json -------------------------------------------------------------------------------- /src/BlazingPizza.MenuService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.MenuService/appsettings.json -------------------------------------------------------------------------------- /src/BlazingPizza.OrderClient/BlazingPizza.OrderClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderClient/BlazingPizza.OrderClient.csproj -------------------------------------------------------------------------------- /src/BlazingPizza.OrderClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderClient/Program.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/Address.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/BlazingPizza.OrderService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/BlazingPizza.OrderService.csproj -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/LatLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/LatLong.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/Order.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/OrderServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/OrderServiceImpl.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/Pizza.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/PizzaSpecial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/PizzaSpecial.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/PizzaStoreContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/PizzaStoreContext.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/PizzaTopping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/PizzaTopping.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/Program.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/Startup.Secret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/Startup.Secret.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/Startup.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/Topping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/Topping.cs -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/appsettings.Development.json -------------------------------------------------------------------------------- /src/BlazingPizza.OrderService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.OrderService/appsettings.json -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/App.razor -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/BlazingPizza.PizzaManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/BlazingPizza.PizzaManager.csproj -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/Pages/Error.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/Pages/Error.razor -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/Pages/Index.razor -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/Pages/_Host.cshtml -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/Program.cs -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/Shared/NavMenu.razor -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/Startup.Secret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/Startup.Secret.cs -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/Startup.cs -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/_Imports.razor -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/appsettings.Development.json -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/appsettings.json -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/BlazingPizza.PizzaManager/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.PizzaManager/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/BlazingPizza.Server/BlazingPizza.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/BlazingPizza.Server.csproj -------------------------------------------------------------------------------- /src/BlazingPizza.Server/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/NotificationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/NotificationsController.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/OrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/OrdersController.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/PizzaStoreContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/PizzaStoreContext.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/PizzasController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/PizzasController.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/Program.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/BlazingPizza.Server/SpecialsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/SpecialsController.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/Startup.Secret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/Startup.Secret.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/Startup.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/TestAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/TestAuthenticationHandler.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/ToppingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/ToppingsController.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/UserController.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/appsettings.Development.json -------------------------------------------------------------------------------- /src/BlazingPizza.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Server/appsettings.json -------------------------------------------------------------------------------- /src/BlazingPizza.Shared/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Shared/Address.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Shared/BlazingPizza.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Shared/BlazingPizza.Shared.csproj -------------------------------------------------------------------------------- /src/BlazingPizza.Shared/LatLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Shared/LatLong.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Shared/NotificationSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Shared/NotificationSubscription.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Shared/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Shared/Order.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Shared/OrderWithStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Shared/OrderWithStatus.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Shared/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Shared/Pizza.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Shared/PizzaSpecial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Shared/PizzaSpecial.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Shared/PizzaTopping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Shared/PizzaTopping.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Shared/Topping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Shared/Topping.cs -------------------------------------------------------------------------------- /src/BlazingPizza.Shared/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rynowak/blazing-backend/HEAD/src/BlazingPizza.Shared/UserInfo.cs --------------------------------------------------------------------------------