diff --git a/codespaces.sh b/codespaces.sh new file mode 100644 index 0000000..a75538d --- /dev/null +++ b/codespaces.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +docker run --detach \ + --name taiko-mongo-debug \ + --volume taiko-mongo:/data/db \ + --publish 27017:27017 \ + mongo + +docker run --detach \ + --name taiko-redis-debug \ + --volume taiko-redis:/data \ + --publish 6379:6379 \ + redis + +#pip install -r requirements.txt + +#flask run +python -m flask run