Initial commit

This commit is contained in:
Hugo Mårdbrink 2025-11-30 15:44:22 +01:00
commit a6272848f9
379 changed files with 74829 additions and 0 deletions

10
dev_server.py Normal file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env python3
import os
from livereload import Server
server = Server()
server.watch('build/dev/javascript/stellar_prune/game.mjs')
server.watch('index.html')
server.serve(port=3000, host='0.0.0.0', root='.')