From 992826357e07a83a6083e2ae35d817d6f7074451 Mon Sep 17 00:00:00 2001 From: Paul Sanders Date: Sat, 11 Jun 2022 09:08:42 -0400 Subject: [PATCH] Add celerybeat-schedule file to gitignore (#639) * Add celerybeat-schedule file to gitignore * Update CHANGELOG Co-authored-by: Paul Sanders --- .gitignore | 5 ++++- CHANGELOG.md | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c2d8e5c1e..344dea2b7 100644 --- a/.gitignore +++ b/.gitignore @@ -141,4 +141,7 @@ fides_uploads saas_config.toml # Script secrets -scripts/secrets.py \ No newline at end of file +scripts/secrets.py + +# celery beat schedule file +celerybeat-schedule diff --git a/CHANGELOG.md b/CHANGELOG.md index 681e25186..3d4073f82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,10 @@ The types of changes are: * Bumped Python to version 3.9.13 in the `Dockerfile` [#630](https://github.com/ethyca/fidesops/pull/630) * Matched the path to the migrations in the mypy settings with the new location [#634](https://github.com/ethyca/fidesops/pull/634) +### Developer Experience + +* Add celerybeat-schedule file to gitignore [#639](https://github.com/ethyca/fidesops/pull/639) + ### Fixed * Fixed error with running mypy on M1 Macs [#630](https://github.com/ethyca/fidesops/pull/630) * Fixed error with mypy on Python versions greater than 3.9.6 [#630](https://github.com/ethyca/fidesops/pull/630)