diff --git a/.gitignore b/.gitignore
index 58ff2f2f28e1e84afa35d9247288d3b21063dac1..5c6b938cbee2b464ddd711c26b8d510fbf54d40e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1146,3 +1146,4 @@ dump.rdb
 /logfile5.txt
 /logfile*.txt
 /src/covid19/static/vendor/
+/.checkmate/
diff --git a/build.sh b/build.sh
deleted file mode 100755
index a4996a305a8fd422343b394d5e325b20bc032f79..0000000000000000000000000000000000000000
--- a/build.sh
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/usr/bin/env bash
-
-function setup_venv() {
-    conda deactivate
-    deactivate
-    rm -rf venv
-    python -m venv venv
-    venv/bin/activate
-}
-
-function pip_compile() {
-  pip-compile -r requirements/build.in
-  pip-compile -r requirements/docs.in
-  pip-compile -r requirements/tests.in
-  pip-compile -r requirements/dev.in
-  . scripts/script_get_python_requirements_from_txt.sh
-  pip check
-}
-
-function pip_install() {
-  pip install -r requirements/build.in
-  pip install -r requirements/docs.in
-  pip install -r requirements/tests.in
-  pip install -r requirements/dev.in
-  pip check
-}
-
-function build_setup() {
-  python setup.py develop
-  pip install -e .
-  pip check
-}
-
-function pip_install_via_setup_py() {
-   pip install -e .
-}
-
-function build_wheel() {
-  python -m pip install --upgrade pip
-  pip install setuptools wheel twine
-  # python setup.py sdist bdist_wheel
-  python -m build --wheel
-  pip check
-}
-
-function npm_install() {
-  npm install
-}
-
-function prepare_edit_setup_py() {
-  pip_compile
-  # pip_install
-}
-
-function first_install() {
-  python -m pip install setuptools wheel
-  python -m pip install --upgrade pip
-  pip_install
-  pip_compile
-  # build_wheel
-  build_setup
-  npm_install
-}
-
-function main() {
-  # setup_venv
-  pip_compile
-  pip_install
-  pip_install_via_setup_py
-  build_wheel
-  npm_install
-}
-
-# prepare_edit_setup_py
-first_install
-#main