Compare commits

..

15 Commits

Author SHA1 Message Date
Mark Cotton 98a3399a8c moving routes comment into README 2023-10-05 21:16:10 -05:00
Mark Cotton 7cd2a5c80d Iterating through users, then looping through cameras, and finally through downloads 2023-10-02 21:13:15 -05:00
Mark Cotton a0c2f2a712 fix typo in settings 2023-09-21 17:02:26 -05:00
Mark Cotton 58d6332748 checking for duplicates and existing files 2023-09-20 21:25:32 -05:00
Mark Cotton c5a8280b19 moving settings to config file to make it more portable, de-duping off of startTimestamp instead of mp4Url 2023-09-20 15:35:15 -05:00
Mark Cotton 438d3bd751 WIP, looping through all of a user's cameras, creating folder structure for downloads 2023-09-19 22:17:14 -05:00
Mark Cotton fdd0b2575c turning up the threads and limit 2023-09-19 12:46:12 -05:00
Mark Cotton ea2c59d810 added download_worker to pulling download jobs from db 2023-09-18 21:17:38 -05:00
Mark Cotton fbfbb70f83 Playground goes to the DB for the refresh_token 2023-09-12 21:13:01 -05:00
Mark Cotton 281b5be9ff clean-up and using config to select days of videos to fetch 2023-09-11 22:27:54 -05:00
Mark Cotton 28f47ac2ba Playground for working on video downloads 2023-09-07 17:02:34 -05:00
Mark Cotton a9670d1145 adding a playground notebook to mockup the backend workers 2023-09-06 23:17:18 -05:00
Mark Cotton dbf7c39400 fixed login and moved up to EagleEyev3 0.0.20 2023-09-06 21:52:07 -05:00
Mark Cotton 0ec6698db7 doing a better job of creating and updating db records 2023-09-06 20:49:18 -05:00
Mark Cotton baf32f857d WIP, most basic version is writing data to database 2023-09-06 16:49:42 -05:00
3 changed files with 2 additions and 3 deletions

1
.gitignore vendored
View File

@ -12,5 +12,4 @@ git-version.txt
settings.py
*.db
videos/*
instance/project.db

View File

@ -1,5 +1,5 @@
FROM python:3.10-slim
FROM python:3.9-slim
COPY ./requirements.txt /app/requirements.txt

View File

@ -6,7 +6,7 @@ services:
volumes:
- .:/app
ports:
- "3333:3000"
- "9400:3000"
restart: always
tty: true
user: 1000:1000