35 lines
605 B
Markdown
35 lines
605 B
Markdown
Chaos West TV Website
|
|
=======================
|
|
|
|
Build instructions:
|
|
----------------------
|
|
Create a webserver for lektor after installing the requirements:
|
|
```bash
|
|
poetry run lektor server
|
|
```
|
|
|
|
Build the output files:
|
|
```bash
|
|
poetry run lektor build
|
|
```
|
|
|
|
Copy to the webserver:
|
|
```bash
|
|
scp -rp $(poetry run lektor project-info --output-path)/ cwtv-web@ax41-1.fsn.mon2.de:/www/
|
|
```
|
|
|
|
Install requirements
|
|
-----------------------
|
|
poetry is used to manage requirements
|
|
```
|
|
# install poetry
|
|
pip install poetry
|
|
|
|
# install requirements
|
|
poetry install --no-root
|
|
```
|
|
|
|
|
|
## License
|
|
License: [MIT License](LICENSE)
|