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
1.**Environment Variables**: Copy `.env.example` to `.env` if you need to set secrets.
99
-
2.**Pre-commit Hooks**: We use `pre-commit` to catch errors automatically.
100
-
```bash
101
-
uv run pre-commit install
102
-
```
103
-
3. **Commit Messages**: We use [Conventional Commits](https://www.conventionalcommits.org/) (e.g., `feat: add login`, `fix: crash on modules`). This allows us to generate changelogs automatically.
107
+
108
+
1.**Environment Variables**: Copy `.env.example` to `.env` if you need to set secrets.
109
+
2.**Pre-commit Hooks**: We use `pre-commit` to catch errors automatically.
110
+
111
+
```bash
112
+
uv run pre-commit install
113
+
```
114
+
115
+
3.**Commit Messages**: We use [Conventional Commits](https://www.conventionalcommits.org/) (e.g., `feat: add login`, `fix: crash on modules`). This allows us to generate changelogs automatically.
0 commit comments