Initial commit

This commit is contained in:
Djuri 2023-06-10 21:23:31 +02:00
commit 56569b8ed2
85 changed files with 39036 additions and 0 deletions

7
scripts/extra_script.py Normal file
View file

@ -0,0 +1,7 @@
Import("env")
# Build web interface before building FS
def before_buildfs(source, target, env):
env.Execute("cd data && yarn && yarn build")
env.AddPreAction("$BUILD_DIR/spiffs.bin", before_buildfs)