From 9fd0463bc75fe723e8e1bd91bd795e681600bf8a Mon Sep 17 00:00:00 2001 From: Gituser010 Date: Mon, 24 Jun 2024 13:15:59 +0200 Subject: [PATCH] compose deleted sensor deleted --- compose.yaml | 52 ------------------- .../virtualsmarthomeplus/DTOs/SensorDTO.java | 6 --- 2 files changed, 58 deletions(-) delete mode 100644 compose.yaml delete mode 100644 src/main/java/io/patriotframework/virtualsmarthomeplus/DTOs/SensorDTO.java diff --git a/compose.yaml b/compose.yaml deleted file mode 100644 index 41dd2f5..0000000 --- a/compose.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Comments are provided throughout this file to help you get started. -# If you need more help, visit the Docker compose reference guide at -# https://docs.docker.com/compose/compose-file/ - -# Here the instructions define your application as a service called "app". -# This service is built from the Dockerfile in the current directory. -# You can add other services your application may depend on here, such as a -# database or a cache. For examples, see the Awesome Compose repository: -# https://github.com/docker/awesome-compose -services: - app: - build: - context: . - target: final - # If your application exposes a port, uncomment the following lines and change - # the port numbers as needed. The first number is the host port and the second - # is the port inside the container. - # ports: - # - 8080:8080 - - # The commented out section below is an example of how to define a PostgreSQL - # database that your application can use. `depends_on` tells Docker Compose to - # start the database before your application. The `db-data` volume persists the - # database data between container restarts. The `db-password` secret is used - # to set the database password. You must create `db/password.txt` and add - # a password of your choosing to it before running `docker compose up`. - # depends_on: - # db: - # condition: service_healthy - # db: - # image: postgres - # restart: always - # user: postgres - # secrets: - # - db-password - # volumes: - # - db-data:/var/lib/postgresql/data - # environment: - # - POSTGRES_DB=example - # - POSTGRES_PASSWORD_FILE=/run/secrets/db-password - # expose: - # - 5432 - # healthcheck: - # test: [ "CMD", "pg_isready" ] - # interval: 10s - # timeout: 5s - # retries: 5 - # volumes: - # db-data: - # secrets: - # db-password: - # file: db/password.txt diff --git a/src/main/java/io/patriotframework/virtualsmarthomeplus/DTOs/SensorDTO.java b/src/main/java/io/patriotframework/virtualsmarthomeplus/DTOs/SensorDTO.java deleted file mode 100644 index 7330b8e..0000000 --- a/src/main/java/io/patriotframework/virtualsmarthomeplus/DTOs/SensorDTO.java +++ /dev/null @@ -1,6 +0,0 @@ -package io.patriotframework.virtualsmarthomeplus.DTOs; -/** - * Base class for sensor devices DTOs - */ -public class SensorDTO { -}