Skip to content

Commit c52fe32

Browse files
Blatt9 (#88)
* Add CI badge to README Added CI badge to README for build status indication. * Update CI name and deleted main.py * Fix import paths to use lowercase 'project' * ci.yml path changed to lowercase
1 parent b52b395 commit c52fe32

92 files changed

Lines changed: 16 additions & 30 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ci
1+
name: "CI"
22
on: push
33
permissions:
44
contents: read
@@ -14,10 +14,10 @@ jobs:
1414
sudo apt-get update
1515
sudo apt-get install -y docker-compose
1616
- name: Build the stack
17-
run: docker-compose -f Project/compose.yaml build
17+
run: docker-compose -f project/compose.yaml build
1818
# Container starten
1919
- name: Start services
20-
run: docker-compose -f Project/compose.yaml up -d
20+
run: docker-compose -f project/compose.yaml up -d
2121

2222
# Healthcheck / Test
2323
# - name: Run tests
@@ -41,8 +41,8 @@ jobs:
4141
sleep $wait_seconds
4242
done
4343
echo "service not ready" >&2
44-
docker-compose -f Project/compose.yaml ps || true
45-
docker-compose -f Project/compose.yaml logs || true
44+
docker-compose -f project/compose.yaml ps || true
45+
docker-compose -f project/compose.yaml logs || true
4646
exit 1
4747
4848
- name: Smoke test

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Project/backend/main.py

Lines changed: 0 additions & 16 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 0 deletions
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ FROM node:24-alpine3.20
22
WORKDIR /app
33

44
# Copy package.json and package-lock.json
5-
COPY Frontend/package*.json ./
5+
COPY frontend/package*.json ./
66

77
# Install dependencies
88
RUN npm install
99

1010
# Copy the rest of the application files
11-
COPY Frontend/ .
11+
COPY frontend/ .
1212

1313
RUN npm run build
1414

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from Project.backend.Person import Person
2-
from Project.backend.Rezept import Rezept
1+
from project.backend.Person import Person
2+
from project.backend.Rezept import Rezept
33

44

55
class Admin(Person):
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from Project.backend.Person import Person
2-
from Project.backend.Rezept import Rezept
1+
from project.backend.Person import Person
2+
from project.backend.Rezept import Rezept
33

44

55
class Benutzer(Person):

0 commit comments

Comments
 (0)