Skip to content

Commit

Permalink
consolidate to development (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
benedictweis authored Apr 30, 2024
1 parent f55b906 commit 23edb79
Show file tree
Hide file tree
Showing 19 changed files with 20 additions and 32 deletions.
36 changes: 12 additions & 24 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ export default withMermaid({
nav: [
{ text: 'Home', link: '/' },
{ text: 'Projekt', link: '/project/idea' },
{ text: 'Statusberichte', link: '/reports/reports'},
{ text: 'Guidelines', link: '/guidelines/project-guideline' },
{ text: 'Development', link: '/development/overview', }
{ text: 'Statusberichte', link: '/reports/reports' },
{ text: 'Development', link: '/development/project-guideline' }
],

sidebar: {
Expand Down Expand Up @@ -43,32 +42,21 @@ export default withMermaid({
}
],

'/guidelines/': [
'/development': [
{ text: "Project Guideline", link: "/development/project-guideline" },
{ text: "API", link: "/development/api" },
{
text: 'Guidelines',
items: [
{ text: 'Project Guideline', link: '/guidelines/project-guideline' },
{ text: 'API', link: '/guidelines/api' },
{ text: 'Backend Guideline', link: '/guidelines/backend' },
{ text: 'Frontend Guideline', link: '/guidelines/frontend' }
text: "Backend", link: "/development/backend/overview", items: [
{ text: 'Authentication', link: '/development/backend/authentication' },
{ text: 'Logging', link: '/development/backend/logging' },
{ text: 'Testing', link: '/development/backend/testing' },
]
}
],
'/development': [
{
text: 'Configuration & Standards',
items: [
{ text: 'Authentication', link: '/development/authentication' },
{ text: 'Logging', link: '/development/logging' },
]
},
{
text: 'Testing',
items: [
{ text: 'Backend', link: '/development/testing/backend' },
{ text: 'Frontend', link: '/development/testing/frontend' }
text: "Frontend", link: "/development/frontend/overview", items: [
{ text: 'Testing', link: '/development/frontend/testing' },
]
}
},
]
},

Expand Down
1 change: 0 additions & 1 deletion docs/guidelines/api.md → docs/development/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,3 @@ Es gibt Protokolle die auf dem REST-Protokoll aufbauen und dieses um weitere Fun
## API Spezifikation

Unsere aktuelle API Spezifikation findet sich <a href="/api/client.html">hier</a>.

Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# Authentication

> [!WARNING]
> The currently used authentication mechanism is subject to changes and only intended for development purposes.
## Local Authentication (Development)

During development `Basic`-Authentication is enabled to make authentication easier. You need to supply a username and a password.
There are example users available, when using the database seeds.

### Example Users

The password for all available example users is
`1234`.
Please note that those users are not available in production.

- `[email protected]`: Max Mustermann
- `[email protected]`: Max Mustermann
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ Das Frontend folgt dem Atomic Design-Prinzip, das die Website-Komponenten in ver

Zusätzlich sollten separate Ordner für Services, Pipes usw. sowie für die E2E-Tests angelegt werden.

## Technolgien
## Technologien

Für die Entwicklung des Frontends wurde die Auswahl zwischen zwei Frameworks in Betracht gezogen: React und Angular. Obwohl React während einer Vorlesung behandelt wurde, konnten keine weiteren Erfahrungen damit gesammelt werden . Im Gegensatz dazu wurde Angular während der praktischen Phase intensiver verwendet, was zu einem besseren Verständnis dieses Frameworks führte. Daher wurde Angular als das Framework für das Projekt ausgewählt.

## Richtlinine
## Richtlinien

### Branches

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Frontend
# Testing

## Introduction

Expand Down
3 changes: 0 additions & 3 deletions docs/development/overview.md

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 23edb79

Please sign in to comment.