We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7cc2bb commit 0ae7fa4Copy full SHA for 0ae7fa4
src/contributors/02-local-development.md
@@ -75,6 +75,36 @@ psql -c 'create database lemmy with owner lemmy;' -U postgres
75
export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
76
```
77
78
+### Code formatting tools
79
+
80
+#### Taplo
81
82
+See installation instructions [here](https://taplo.tamasfe.dev/), or run
83
84
+```bash
85
+cargo install taplo-cli --locked
86
+```
87
88
+#### pg_format
89
90
+Debian-based distro:
91
92
93
+sudo apt install pgformatter
94
95
96
+Arch-based distro:
97
98
99
+sudo pacman -S pgformatter
100
101
102
+macOS:
103
104
105
+brew install pgformatter
106
107
108
### Get the code
109
110
Clone frontend and backend code to local folders. Be sure to include `--recursive` to initialize git submodules.
0 commit comments