Go to file
Renovate 1a98d4f8d2 chore(deps): update actions/checkout action to v4 (!12)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://github.com/actions/checkout) | action | major | `v3` -> `v4` |

---

### Release Notes

<details>
<summary>actions/checkout (actions/checkout)</summary>

### [`v4`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417)

[Compare Source](https://github.com/actions/checkout/compare/v3...v4)

-   Bump the minor-npm-dependencies group across 1 directory with 4 updates by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/actions/checkout/pull/1739
-   Bump actions/checkout from 3 to 4 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/actions/checkout/pull/1697
-   Check out other refs/\* by commit by [@&#8203;orhantoy](https://github.com/orhantoy) in https://github.com/actions/checkout/pull/1774
-   Pin actions/checkout's own workflows to a known, good, stable version. by [@&#8203;jww3](https://github.com/jww3) in https://github.com/actions/checkout/pull/1776

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45NC4zIiwidXBkYXRlZEluVmVyIjoiMzguOTQuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: Jan Gleytenhoover <krisellp9@gmail.com>
Reviewed-on: #12
Reviewed-by: Jan Gleytenhoover <krisellp9@gmail.com>
Co-authored-by: Renovate <renovate@kjan.de>
Co-committed-by: Renovate <renovate@kjan.de>
2024-09-25 11:36:28 +00:00
.gitea/workflows chore(deps): update actions/checkout action to v4 (!12) 2024-09-25 11:36:28 +00:00
config/checkstyle feat: Add pipelines (SCRUM-44) (!6) 2024-09-25 09:15:39 +00:00
docker/local first 2024-09-03 15:01:50 +02:00
gradle/wrapper chore(deps): update all non-major dependencies (!4) 2024-09-25 07:21:16 +00:00
requests feat: Implement create project route (SCRUM-7) (!11) 2024-09-25 11:03:47 +00:00
src feat: Implement create project route (SCRUM-7) (!11) 2024-09-25 11:03:47 +00:00
.gitignore first 2024-09-03 15:01:50 +02:00
build.gradle.kts feat: Implement create project route (SCRUM-7) (!11) 2024-09-25 11:03:47 +00:00
GetBearerToken.http feat: Implement create project route (SCRUM-7) (!11) 2024-09-25 11:03:47 +00:00
gradlew chore(deps): update all non-major dependencies (!4) 2024-09-25 07:21:16 +00:00
gradlew.bat feat: Implement create project route (SCRUM-7) (!11) 2024-09-25 11:03:47 +00:00
Readme.md docs: Update README.md (!5) 2024-09-25 07:08:37 +00:00
renovate.json chore: Configure Renovate (!2) 2024-09-25 06:40:28 +00:00
SampleRequests.http first 2024-09-03 15:01:50 +02:00
settings.gradle.kts first 2024-09-03 15:01:50 +02:00

Starter für das LF08 Projekt

Requirements

Endpunkt

http://localhost:8080

Swagger

http://localhost:8080/swagger

Postgres

Terminal öffnen

für alles gilt, im Terminal im Ordner docker/local sein

cd docker/local

Postgres starten

docker compose up

Achtung: Der Docker-Container läuft dauerhaft! Wenn er nicht mehr benötigt wird, sollten Sie ihn stoppen.

Postgres stoppen

docker compose down

Postgres Datenbank wipen, z.B. bei Problemen

docker compose down
docker volume rm local_lf8_starter_postgres_data
docker compose up

Intellij-Ansicht für Postgres Datenbank einrichten

1. Lasse den Docker-Container mit der PostgreSQL-Datenbank laufen
2. im Ordner resources die Datei application.properties öffnen und die URL der Datenbank kopieren
3. rechts im Fenster den Reiter Database öffnen
4. In der Database-Symbolleiste auf das Datenbanksymbol mit dem Schlüssel klicken
5. auf das Pluszeichen klicken
6. Datasource from URL auswählen
7. URL der DB einfügen und PostgreSQL-Treiber auswählen, mit OK bestätigen
8. Username lf8_starter und Passwort secret eintragen (siehe application.properties), mit Apply bestätigen
9. im Reiter Schemas alle Häkchen entfernen und lediglich vor lf8_starter_db und public Häkchen setzen
10. mit Apply und ok bestätigen 

Keycloak

Keycloak Token

  1. Auf der Projektebene GetBearerToken.http öffnen.
  2. Neben der Request auf den grünen Pfeil drücken
  3. Aus dem Reponse das access_token kopieren

Conventions

Commits

Commits and merge request names MUST be done as documented here: https://www.conventionalcommits.org/en/v1.0.0/ Merge request titles MAY also include the ticket id from our jira tickets if the Merge request is part of a ticket. The jira board can be opened through the issues tab.