Car-Detailing project for Frontend Design Techniques
- .NET 6
- React
- TypeScipt
- TanStack Query V4
Production build can be run by Docker. To build image go to /frontend
and write:
> docker build -t car-detailing-frontend .
Then run image
> docker run -p 9000:9000 car-detailing-frontend
First it is needed to install all required packages. Go to /frontend
and run
> npm install
If you want to run dev build:
> npm run dev
If you want to run production build:
> npm run build
> npm run preview
localhost:32780/swagger/index.html
Production build can be run by Docker. To build image go to /backend/Car-Detailing-Backend
and write:
> docker build -t car-detailing-backend .
Then run image
> docker run -p 32780:80 car-detailing-backend
First it is needed to install all required packages. Go to /backend/Car-Detailing-Backend
and run
Important If you do not have the .NET 6.0 LTS SDK on your local device download it from the website: https://dotnet.microsoft.com/en-us/download
Otherwise the next steps will not work
First install all dependencies
> dotnet restore
Compile the programme
> dotnet build
Run the programme
> dotnet run