Initial commit

This commit is contained in:
akp 2024-06-18 19:42:57 +01:00
commit 37ef37be28
No known key found for this signature in database
GPG key ID: CF8D58F3DEB20755
10 changed files with 310 additions and 0 deletions

11
run.sh Normal file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -ex
rm -r _dist || true
poetry run python3 generate.py
(
rm dist.zip || true
cd _dist
zip -r ../dist.zip .
)