forked from mirrors/autodoist
Add script to run
parent
67935a5b0c
commit
13eb8ad46a
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if [ ! -d venv ]; then
|
||||
echo "Creating virtualenv and installing requirements"
|
||||
python3 -m venv venv
|
||||
venv/bin/pip3 install -r requirements.txt
|
||||
fi
|
||||
|
||||
venv/bin/python3 autodoist.py \
|
||||
-a $(cat .api-token) \
|
||||
-l Next \
|
||||
-r 2 \
|
||||
-e 1 \
|
||||
--delay 7
|
Loading…
Reference in New Issue