Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.iemr.tm</groupId>
<artifactId>Scheduler-API</artifactId>
<version>0.0.1-SNAPSHOT</version>
<artifactId>scheduler-api</artifactId>
<version>3.1.0</version>
<packaging>war</packaging>
<name>scheduler-api</name>
<name>Scheduler-API</name>
<description>TeleMedicine Page</description>
<parent>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -256,7 +256,7 @@
</dependencies>

<build>
<finalName>schedulerapi-v3.0.0</finalName>
<finalName>${artifactId}-${version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
1 change: 1 addition & 0 deletions src/main/environment/common_ci.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ spring.redis.host=localhost
jwt.secret=@env.JWT_SECRET_KEY@

#ELK logging file name
logging.path=logs/
logging.file.name=@env.SCHEDULER_API_LOGGING_FILE_NAME@

springdoc.api-docs.enabled=@env.SWAGGER_DOC_ENABLED@
Expand Down
18 changes: 0 additions & 18 deletions src/main/environment/common_dev.properties

This file was deleted.

4 changes: 3 additions & 1 deletion src/main/environment/common_example.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ common-url=http://localhost:8083/

### Redis IP
spring.redis.host=localhost
jwt.secret=
jwt.secret=my-32-character-ultra-secure-and-ultra-long-secret
logging.path=logs/
logging.file.name=logs/scheduler-api.log

18 changes: 0 additions & 18 deletions src/main/environment/common_test.properties

This file was deleted.

3 changes: 0 additions & 3 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ logging.level.org.springframework.web=DEBUG
logging.level.org.hibernate=DEBUG
logging.level.com.iemr=DEBUG

logging.path=logs/
logging.file.name=logs/scheduler-api.log

# slot size in mins multiple of 5
scheduling-slotsize=5
czentrix-server-ip=10.208.122.99
Expand Down
4 changes: 4 additions & 0 deletions src/main/webapp/WEB-INF/jboss-web.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
<context-root>/scheduler-api</context-root>
</jboss-web>