Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor Cleanups... #29

Merged
merged 1 commit into from
Jan 12, 2025
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
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ A small utility for authentication and authorization with platforms, profiles, r
* This branch is used for local/development instances
* When a pull request is created, flyway migration is run in this branch to validate schema changes



* TODO
* Update this README.md for proper documentation
* Implement RequestMetadata, ResponseCrudInfo
* GitHub actions for flyway
* migrate to dev database when pull request is created
* migrate to main database when pull request is merged
* add flyway repair and validate workflows, but keep them manual only
2 changes: 1 addition & 1 deletion app/src/main/java/auth/service/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static void main(String[] args) {
validateInitArgs();
SpringApplication app = new SpringApplication(App.class);
app.setDefaultProperties(
singletonMap("server.port", getSystemEnvProperty(ENV_SERVER_PORT, "8080")));
singletonMap("server.port", getSystemEnvProperty(ENV_SERVER_PORT, "8001")));
app.run(args);
log.info("End application initialization...");
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/resources/logback-spring.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration>

<configuration debug="true">
<configuration debug="false">
<import class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"/>
<import class="ch.qos.logback.core.rolling.RollingFileAppender"/>
<import class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy"/>
Expand Down
Loading