aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore5
-rw-r--r--__pycache__/unicorn_hat_sim.cpython-35.pycbin4851 -> 0 bytes
-rw-r--r--download_and_run.sh2
-rw-r--r--server.py4
-rw-r--r--unicorn.zipbin7541 -> 7539 bytes
5 files changed, 6 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index 3d0f933..c80ad90 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,8 +7,9 @@
/coverage
# production
-/build
-/saves
+/build/
+/saves/
+/__pycache__
# misc
.DS_Store
diff --git a/__pycache__/unicorn_hat_sim.cpython-35.pyc b/__pycache__/unicorn_hat_sim.cpython-35.pyc
deleted file mode 100644
index 7348417..0000000
--- a/__pycache__/unicorn_hat_sim.cpython-35.pyc
+++ /dev/null
Binary files differ
diff --git a/download_and_run.sh b/download_and_run.sh
index ddc8714..7fc7fcc 100644
--- a/download_and_run.sh
+++ b/download_and_run.sh
@@ -1,4 +1,4 @@
pip3 install unicornhathd Flask Flask-Sockets \
&& wget -N "https://raw.githubusercontent.com/MFAshby/unicornpaint/master/unicornpaint.zip" \
-&& unzip unicornpaint.zip \
+&& unzip -o unicornpaint.zip \
&& python3 server.py
diff --git a/server.py b/server.py
index e610f57..47bc931 100644
--- a/server.py
+++ b/server.py
@@ -22,7 +22,7 @@ LOAD = 'LOAD'
# GLobal references to app & clients
all_clients = set()
-app = Flask(__name__, static_folder='build/')
+app = Flask(__name__, static_folder='')
sockets = Sockets(app)
def send_state():
@@ -71,7 +71,7 @@ def load(saveName):
for y, pixel in enumerate(row):
unicorn.set_pixel(x, y, *pixel)
unicorn.show()
-
+
@sockets.route('/ws')
def do_websocket(websocket):
global all_clients
diff --git a/unicorn.zip b/unicorn.zip
index 5ce66b9..70bc7af 100644
--- a/unicorn.zip
+++ b/unicorn.zip
Binary files differ