Compare commits
4 Commits
adbb5685a0
...
36d75dc50d
Author | SHA1 | Date |
---|---|---|
Luca | 36d75dc50d | |
Luca | 71fc7ed07e | |
Luca | 468f68c2cb | |
Luca | 3e75b76ac9 |
|
@ -1,10 +1,15 @@
|
|||
**/__pycache__
|
||||
*.bkp
|
||||
.dockerignore
|
||||
.drone.yml
|
||||
.editorconfig
|
||||
.git*
|
||||
.idea
|
||||
Dockerfile
|
||||
Dockerfile-dev
|
||||
README.md
|
||||
db.sqlite3
|
||||
docker-compose.yml
|
||||
env
|
||||
setup.cfg
|
||||
storage
|
||||
|
|
|
@ -158,3 +158,6 @@ cython_debug/
|
|||
# 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.
|
||||
#.idea/
|
||||
|
||||
# E.g. copies of old dev database
|
||||
*.bkp
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
FROM python:3.10-alpine3.17
|
||||
|
||||
RUN apk add --no-cache git
|
||||
FROM python:3.12-alpine3.19
|
||||
|
||||
RUN adduser -h /opt/shiftregister -D shiftregister
|
||||
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
FROM python:3.10-alpine3.17
|
||||
|
||||
RUN apk add --no-cache git
|
||||
FROM python:3.12-alpine3.19
|
||||
|
||||
RUN adduser -h /home/shiftregister -D shiftregister
|
||||
|
||||
|
|
|
@ -176,7 +176,7 @@ CELERY_BEAT_SCHEDULE = {
|
|||
},
|
||||
"deactivate-fallbacks-every-300-seconds": {
|
||||
"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