You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Create a Pull Request from your forked repository to the ``develop`` branch of the original repository.
49
+
50
+
Development Setup
51
+
-----------------
52
+
53
+
Setup
54
+
~~~~~
55
+
56
+
Install dependencies and `ruff` pre-commit hooks.
57
+
58
+
.. code-block:: bash
59
+
60
+
make install
61
+
62
+
Prerequisites: **Docker** and **Docker Compose** installed.
63
+
64
+
Start development PostgreSQL
65
+
66
+
.. code-block:: bash
67
+
68
+
make start-db
69
+
70
+
Stop development PostgreSQL
71
+
72
+
.. code-block:: bash
73
+
74
+
make stop-db
75
+
76
+
Makefile utility
77
+
~~~~~~~~~~~~~~~~
78
+
79
+
.. code-block:: bash
80
+
81
+
make help
82
+
83
+
# will show all available commands and their descriptions.
84
+
85
+
Linting
86
+
~~~~~~~
87
+
88
+
We use `pre-commit <https://pre-commit.com/>`_ hook with `ruff <https://github.com/astral-sh/ruff-pre-commit>`_ to automatically lint the codebase before committing.
0 commit comments