Initial commit

This commit is contained in:
Leigh Morresi
2021-01-27 12:39:46 +01:00
commit ec3f34804f
16 changed files with 333 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM python:3.8-buster
RUN mkdir -p /app/dev
COPY sleep.py /
CMD [ "python", "/sleep.py" ]

5
backend/dev-docker/build.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
docker stop tss-node
docker rm tss-node
docker build -t tss-node .

View File

@@ -0,0 +1,18 @@
aiohttp==1.3.1
async-timeout==1.1.0
chardet==2.3.0
multidict==2.1.4
python-engineio
python_socketio==1.8.4
six==1.10.0
yarl==0.9.2
eventlet==0.19.0
flask
# Actual connecting to services
pytz
phpserialize==1.3.0
redis>=2.6.2
pymysql==0.8
bleach==1.5.0
html5lib==0.9999999 # via bleach

View File

@@ -0,0 +1,9 @@
import time
import sys
while True:
# Wait for 5 seconds
print('To stderr.', file=sys.stderr)
time.sleep(2)