From 107ee1be55f38c3257eddaea1f005173ddd44aee Mon Sep 17 00:00:00 2001 From: Alon Kolyakov Date: Tue, 27 Dec 2022 12:48:59 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7f99cbb..cb5f8c2 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,42 @@ -# PetShop ASP.NET web Project using bootstrap lib +# PetShop ASP.NET Core web application Project -

Asp.Net Core MVC web app using MSSQL and EF6

+

Asp.Net Core MVC web app using mssql, ef6, docker, jquery, sass, CORS, restAPI, socket, hubs & signalR, vanilla js, bootstrap lib

Main catalog page where you can scroll and choose animel to explore and comment

+

Docker instuctions

+pulling images to your local device: + +```javascript + $ docker pull bloodshop/petshopapp:1.0 # https://hub.docker.com/repository/docker/bloodshop/petshopapp + $ docker pull bloodshop/petshopdb:1.0 # https://hub.docker.com/repository/docker/bloodshop/petshopdb + $ docker-compose up -d +``` + +

docker-compose.yml

+ +```python +version: '3.3' + +services: + db: + image: bloodshop/petshopdb:1.0 + restart: always + + app: + depends_on: + - db + image: bloodshop/petshopapp:1.0 + ports: + - "3000:80" + - "3001:433" + networks: + - db-bridge + restart: always +``` +

What's in this project

This is a sample which shows most of the common features of ASP.NET Identity. For more information on it, please visit http://asp.net/identity