From 63aef7802dae6a2bb0917cbb65ccf0f3e58c7b81 Mon Sep 17 00:00:00 2001 From: Sven Schneider <sven.schneider@hft-stuttgart.de> Date: Fri, 29 Oct 2021 12:55:52 +0000 Subject: [PATCH] Update README.md --- README.md | 32 ++------------------------------ 1 file changed, 2 insertions(+), 30 deletions(-) diff --git a/README.md b/README.md index a1e88ea..a4d3677 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,4 @@ +# Citydemonstrator Website of HFT Stuttgart in cooperation with Dress & Sommers +Visit the website at: [https://citydemonstrator.hft-stuttgart.de](https://citydemonstrator.hft-stuttgart.de) ---- - -Example plain HTML site using GitLab Pages. - -Learn more about GitLab Pages at https://pages.gitlab.io and the official -documentation https://docs.gitlab.com/ce/user/project/pages/. - ---- - -## GitLab CI - -This project's static Pages are built by [GitLab CI][ci], following the steps -defined in [`.gitlab-ci.yml`](.gitlab-ci.yml): - -``` -variables: - EXPORT_DIR: "/var/www/html/pages" - -pages-master: - stage: deploy - script: - - mkdir "$EXPORT_DIR/$CI_PROJECT_NAME" - - cp -r public/* "$EXPORT_DIR/$CI_PROJECT_NAME" - tags: - - production - only: - - master -``` - -The above example expects to put all your HTML files in the `public/` directory. -- GitLab