Compare commits
4 Commits
adbb5685a0
...
36d75dc50d
Author | SHA1 | Date |
---|---|---|
Luca | 36d75dc50d | |
Luca | 71fc7ed07e | |
Luca | 468f68c2cb | |
Luca | 3e75b76ac9 |
|
@ -1,10 +1,15 @@
|
||||||
**/__pycache__
|
**/__pycache__
|
||||||
|
*.bkp
|
||||||
.dockerignore
|
.dockerignore
|
||||||
|
.drone.yml
|
||||||
|
.editorconfig
|
||||||
.git*
|
.git*
|
||||||
|
.idea
|
||||||
Dockerfile
|
Dockerfile
|
||||||
Dockerfile-dev
|
Dockerfile-dev
|
||||||
README.md
|
README.md
|
||||||
db.sqlite3
|
db.sqlite3
|
||||||
docker-compose.yml
|
docker-compose.yml
|
||||||
env
|
env
|
||||||
|
setup.cfg
|
||||||
storage
|
storage
|
||||||
|
|
|
@ -158,3 +158,6 @@ cython_debug/
|
||||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
#.idea/
|
#.idea/
|
||||||
|
|
||||||
|
# E.g. copies of old dev database
|
||||||
|
*.bkp
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
FROM python:3.10-alpine3.17
|
FROM python:3.12-alpine3.19
|
||||||
|
|
||||||
RUN apk add --no-cache git
|
|
||||||
|
|
||||||
RUN adduser -h /opt/shiftregister -D shiftregister
|
RUN adduser -h /opt/shiftregister -D shiftregister
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
FROM python:3.10-alpine3.17
|
FROM python:3.12-alpine3.19
|
||||||
|
|
||||||
RUN apk add --no-cache git
|
|
||||||
|
|
||||||
RUN adduser -h /home/shiftregister -D shiftregister
|
RUN adduser -h /home/shiftregister -D shiftregister
|
||||||
|
|
||||||
|
|
|
@ -176,7 +176,7 @@ CELERY_BEAT_SCHEDULE = {
|
||||||
},
|
},
|
||||||
"deactivate-fallbacks-every-300-seconds": {
|
"deactivate-fallbacks-every-300-seconds": {
|
||||||
"task": "shiftregister.fallback.tasks.deactivate_fallbacks",
|
"task": "shiftregister.fallback.tasks.deactivate_fallbacks",
|
||||||
"schedule": float(getenv("FALLBACK_DEACTIVAtE_INTERVAL", 300.0)), # seconds
|
"schedule": float(getenv("FALLBACK_DEACTIVATE_INTERVAL", 300.0)), # seconds
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue