mirror of
https://github.com/suitenumerique/drive.git
synced 2026-04-25 17:15:19 +02:00
The celery beat configuration was not working correctly, we installed the database scheduler but we didn't configure it correctly. We prefer removing this scheduler to use the default one. Instead, the crontab part can be configured using environment variable. By default it will be run every night at 3AM.
38 lines
345 B
Plaintext
38 lines
345 B
Plaintext
# Python
|
|
__pycache__
|
|
*.pyc
|
|
**/__pycache__
|
|
**/*.pyc
|
|
venv
|
|
.venv
|
|
|
|
# System-specific files
|
|
.DS_Store
|
|
**/.DS_Store
|
|
|
|
# Docker
|
|
compose.*
|
|
env.d
|
|
|
|
# Docs
|
|
docs
|
|
*.md
|
|
*.log
|
|
|
|
# Development/test cache & configurations
|
|
data
|
|
.cache
|
|
.circleci
|
|
.git
|
|
.vscode
|
|
.iml
|
|
.idea
|
|
db.sqlite3
|
|
.mypy_cache
|
|
.pylint.d
|
|
.pytest_cache
|
|
**/celerybeat-schedule*
|
|
|
|
# Frontend
|
|
node_modules
|