2021-04-14 01:47:24 +02:00
|
|
|
# Öffentliche Seite der WTF Kooperative eG
|
2020-12-23 16:14:08 +01:00
|
|
|
|
2021-02-06 15:09:15 +01:00
|
|
|
Öffentliche Website der Genossenschaft auf Basis des Static-Site-Generators [Lektor](https://www.getlektor.com/).
|
2020-12-23 16:14:08 +01:00
|
|
|
|
2021-04-14 01:47:24 +02:00
|
|
|
<a href="https://wtf-eg.de/"><img src="https://git.wtf-eg.de/ag_kommunikation/webseite/raw/branch/main/assets/images/wtf_logo.svg" width="420px" alt="WTF Logo"/></a>
|
2021-02-19 00:01:58 +01:00
|
|
|
|
2021-04-14 01:47:24 +02:00
|
|
|
Das Git Repository zur Webseite ist auf [git.wtf-eg.de/ag_kommunikation/webseite](https://git.wtf-eg.de/ag_kommunikation/webseite.git).
|
2021-02-19 00:01:58 +01:00
|
|
|
|
2020-12-23 16:14:08 +01:00
|
|
|
## Status
|
|
|
|
|
2021-04-08 21:26:00 +02:00
|
|
|
Release Party am Mittwoch, den 14.04
|
2021-03-08 09:18:32 +01:00
|
|
|
|
|
|
|
## Lokales entwickeln
|
|
|
|
|
|
|
|
### Vorbereitung
|
|
|
|
|
|
|
|
Installation von Lektor, siehe offizielle [Doku](https://www.getlektor.com/docs/installation/).
|
|
|
|
|
2021-03-18 22:14:51 +01:00
|
|
|
```
|
|
|
|
# install git requirements
|
|
|
|
sudo apt install git-lfs
|
|
|
|
|
|
|
|
# install lektor requirements
|
|
|
|
sudo apt install python3-pip imagemagick
|
|
|
|
|
|
|
|
# install lektor
|
|
|
|
pip3 install --user lektor
|
|
|
|
|
2021-04-14 01:52:36 +02:00
|
|
|
# clone git repo to folder wtf-webseite
|
|
|
|
git clone https://git.wtf-eg.de/ag_kommunikation/webseite.git wtf-webseite
|
2021-03-18 22:14:51 +01:00
|
|
|
|
|
|
|
# change to repo
|
2021-04-14 01:52:36 +02:00
|
|
|
cd wtf-webseite
|
2021-03-18 22:14:51 +01:00
|
|
|
|
|
|
|
# install lfs
|
|
|
|
git lfs install
|
|
|
|
|
|
|
|
# download all LFS files
|
2021-04-14 01:52:36 +02:00
|
|
|
git lfs fetch
|
2021-03-18 22:14:51 +01:00
|
|
|
|
|
|
|
# run lektor
|
|
|
|
lektor server
|
|
|
|
```
|
|
|
|
|
2021-03-08 09:18:32 +01:00
|
|
|
### Server starten
|
|
|
|
|
2021-03-18 22:14:51 +01:00
|
|
|
Der Server kann nun per `lektor server` gestartet werden und sollte unter http://127.0.0.1:5000/ erreichbar sein.
|
|
|
|
|