-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new documentation topics and improve structure
Introduced new topics: Development and Liquibase, with details on setup and usage. Enhanced existing content in New Deployment and Database with links for better navigation. Updated the table of contents to reflect these changes and added a placeholder for publishing documentation instructions.
- Loading branch information
Showing
7 changed files
with
47 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
# Database | ||
|
||
|
||
## Updates | ||
To update database's table, columns or anything [liquibase](Liquibase.md) is used. | ||
|
||
|
||
## Backup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Development | ||
|
||
Requirements: | ||
- Java 23 installed | ||
- Npm installed (lts is best) | ||
- [Update hosts file]() | ||
|
||
|
||
|
||
## Update hosts file | ||
*Remember to take Backup before editing your `hosts` file, mistakes there can block your internet access or cause other network-related issues.* | ||
|
||
|
||
### Windows | ||
You need Administrator access to update hosts. | ||
In ``C:\Windows\System32\drivers\etc`` find file *hosts* and add those lines: | ||
|
||
``` | ||
# Microservices | ||
127.0.0.1 chess.michibaum.ch | ||
127.0.0.1 gateway.michibaum.ch | ||
127.0.0.1 registry.michibaum.ch | ||
127.0.0.1 admin.michibaum.ch | ||
127.0.0.1 usermanagement.michibaum.ch | ||
127.0.0.1 authentication.michibaum.ch | ||
127.0.0.1 fitness.michibaum.ch | ||
127.0.0.1 music.michibaum.ch | ||
127.0.0.1 michibaum.ch | ||
``` | ||
|
||
### Linux | ||
In Linux the file is located under ``/etc/hosts``. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Liquibase | ||
|
||
Every Service that uses a Database has [liquibase](https://www.liquibase.com/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# New Deployment | ||
|
||
Every new Deployment is first startet with a pull request and merge into the master branch. This triggers multiple Github actions. One ot these is Build and Publish. | ||
Every new Deployment is first startet with a pull request and merge into the master branch. This triggers multiple Github actions. One ot these is [Build and Publish](Actions.md#deploy-yml-build-and-publish). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
# Website Service | ||
|
||
Start typing here... |