Commit fa3cf353 authored by Sven Schneider's avatar Sven Schneider
Browse files

replaced general readme with a brief info and a link to the gitlab pages website

parent 32f1f76c
Pipeline #1919 passed with stages
in 5 seconds
# Welcome
This is the transferportal project webpage for iCity and other related visualizations of our research group.
---
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.
You can view the content of this project via gitlab-pages at: https://transfer.hft-stuttgart.de/pages/urbanvis/
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment