0.3.0: initial commit + Dockerfile + rewrite

This commit is contained in:
Yusur 2025-06-13 03:01:32 +02:00
commit e679de5991
77 changed files with 4147 additions and 0 deletions

12
docker-run.sh Normal file
View file

@ -0,0 +1,12 @@
#!/usr/bin/bash
start-app() {
[[ ! -d /opt/live-app ]] && exit 1
cd /usr/src/app
cp -rv /opt/live-app/{freak,pyproject.toml,.env,docker-run.sh} ./
pip install -e .
flask --app freak run --host=0.0.0.0
}
[[ "$1" = "" ]] && start-app