Flamenco/.gitignore
Sybren A. Stüvel b58f1e15f1 Add CLI utility to recreate tasks of jobs
Due to an issue (which has been fixed in the previous commit), all tasks
in the database were deleted when starting Flamenco. This tool attempts
to recompile the job and recreate its tasks.

The statuses of the tasks are set based on the job status. Basically:

- job active → tasks queued
- job completed → tasks completed
- job cancelled / failed → tasks cancelled
- otherwise → tasks queued

To ensure that the tool is only used to create tasks from scratch, it
refuses to work on a job that still has tasks in the database.
2023-07-10 14:10:15 +02:00

51 lines
782 B
Plaintext

*.exe
*.sqlite
*.sqlite-shm
*.sqlite-wal
*.db
*.blend[0-9]
*.flamenco.blend
.env
/flamenco-manager
/flamenco-worker
/flamenco-manager_race
/flamenco-worker_race
/shaman-checkout-id-setter
/stresser
/job-creator
/addon-packer
flamenco-manager.yaml
flamenco-worker.yaml
flamenco-worker-credentials.yaml
node_modules/
# Directory for custom job compiler scripts:
/scripts/
# Default storage locations:
/flamenco-manager-storage/
/flamenco-shared-storage/
# Old default storage locations:
/task-logs/
/flamenco-storage/
__pycache__
*.pyc
.mypy_cache/
.openapi-generator/
.hugo_build.lock
.openapi-generator-*.log
web/manager-api/dist/
web/static/
web/project-website/public/
web/project-website/resources/_gen/
/dist/
/tools/
# IDE related stuff
*.DS_Store
.vscode/settings.json