Hello, {{ title() }}
+Congratulations! Your app is running. 🎉
+diff --git a/.drone.yml b/.drone.yml
index a965de4..f1c176b 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -3,9 +3,21 @@ type: kubernetes
name: default
steps:
- - name: hello
- image: alpine
+ - name: build-angular
+ image: node:22-alpine
commands:
- - echo "Pipeline läuft!"
- - echo "Repo: ${DRONE_REPO}"
- - echo "Branch: ${DRONE_BRANCH}"
\ No newline at end of file
+ - npm ci
+ - npm run build
+
+ - name: build-and-push
+ image: plugins/docker
+ settings:
+ registry: gitea.mnky-code.de
+ repo: gitea.mnky-code.de/mnky/ngrx-playground
+ tags:
+ - latest
+ - ${DRONE_COMMIT_SHA:0:8}
+ username:
+ from_secret: gitea_username
+ password:
+ from_secret: gitea_password
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..50f6697
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/node_modules/
+.idea
+
+*.DS_Store
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..ef27eb9
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,13 @@
+# Build Stage
+FROM node:22-alpine AS builder
+WORKDIR /app
+COPY package*.json ./
+RUN npm ci
+COPY . .
+RUN npm run build
+
+# Runtime Stage
+FROM nginx:alpine
+COPY --from=builder /app/dist/*/browser /usr/share/nginx/html
+EXPOSE 80
+CMD ["nginx", "-g", "daemon off;"]
\ No newline at end of file
diff --git a/README.md b/README.md
index 343d2af..6cb36c1 100644
--- a/README.md
+++ b/README.md
@@ -1,281 +1,59 @@
-
-
-
+# NgrxPlayground
+This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 21.2.1.
+## Development server
-
-
-[![Contributors][contributors-shield]][contributors-url]
-[![Forks][forks-shield]][forks-url]
-[![Stargazers][stars-shield]][stars-url]
-[![Issues][issues-shield]][issues-url]
-[![Unlicense License][license-shield]][license-url]
-[![LinkedIn][linkedin-shield]][linkedin-url]
+To start a local development server, run:
+```bash
+ng serve
+```
+Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
-
-
-
-
+## Code scaffolding
-
- An awesome README template to jumpstart your projects!
-
- Explore the docs »
-
-
- View Demo
- ·
- Report Bug
- ·
- Request Feature
-
Congratulations! Your app is running. 🎉
+