conda create -n smartmirror python=3.11
conda activate smartmirror
python -m pip install -r requirements.txt
for this command, board must be public, see gallery-dl docs for login instructions on private boards
alternatively, create a folder of images called "vision" and place it in mirror/static/mirror/
python -m pip install gallery-dl
gallery-dl -d mirror/static/mirror/vision -o directory="" [PINTEREST_BOARD_URL]
cp example.env .env
vi .env # or whatever editor you use
Note: First run will take a while because whisper needs to download weights the first time.
python manage.py collectstatic --noinput
uvicorn smartmirror.asgi:application --host 127.0.0.1 --port 8000
Now the mirror UI will show up at localhost:8000 or 127.0.0.1:8000