From a20d89712710f1129f79f1bc91b95ba0c7093627 Mon Sep 17 00:00:00 2001 From: valentinkolb Date: Thu, 14 Mar 2024 20:10:46 +0100 Subject: [PATCH] refactor and added Dockerfile & Demo Action --- .gitea/workflows/demo.yaml | 19 +++++++++++++++++++ Dockerfile | 12 ++++++++++++ README.md | 4 ++-- {js => srv/js}/template-engine.js | 0 {styles => srv/styles}/boxes.css | 0 {styles => srv/styles}/main.css | 0 {styles => srv/styles}/tables.css | 0 {styles => srv/styles}/template-engine.css | 0 {styles => srv/styles}/theme-override.css | 0 9 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 .gitea/workflows/demo.yaml create mode 100644 Dockerfile rename {js => srv/js}/template-engine.js (100%) rename {styles => srv/styles}/boxes.css (100%) rename {styles => srv/styles}/main.css (100%) rename {styles => srv/styles}/tables.css (100%) rename {styles => srv/styles}/template-engine.css (100%) rename {styles => srv/styles}/theme-override.css (100%) diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml new file mode 100644 index 0000000..d67ac59 --- /dev/null +++ b/.gitea/workflows/demo.yaml @@ -0,0 +1,19 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v3 + - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4d5293a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +# Use the official nginx image as the base +FROM nginx:alpine + +# Remove the default nginx static files +RUN rm -rf /usr/share/nginx/html/* + +# Copy the content of /srv directory to the nginx serving directory +# Note: You need to have the /srv directory with your files on the Docker host +COPY /srv /usr/share/nginx/html + +# Start nginx in the foreground +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/README.md b/README.md index aec1d30..d9eae99 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,10 @@ Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das d ## Usage ```html - + - +