28 lines
515 B
Markdown
28 lines
515 B
Markdown
# Installation
|
|
1. Helper Skripts
|
|
2. GitHub: https://github.com/alexta69/metube
|
|
- Anleitung unter `Building and running locally` befolgen
|
|
1. Docker
|
|
|
|
---
|
|
# Update
|
|
|
|
Wen über GitHub neue Version als Zip runterladen, entpacken, auf Server kopieren und Installationsanleitung befolgen
|
|
|
|
|
|
|
|
---
|
|
|
|
``` shell
|
|
cd metube/ui
|
|
# install Angular and build the UI
|
|
npm install
|
|
node_modules/.bin/ng build
|
|
# install python dependencies
|
|
cd ..
|
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
uv sync
|
|
# run
|
|
uv run python3 app/main.py
|
|
```
|