File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,36 @@ psql -c 'create database lemmy with owner lemmy;' -U postgres
75
75
export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
76
76
```
77
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
+ ``` bash
93
+ sudo apt install pgformatter
94
+ ```
95
+
96
+ Arch-based distro:
97
+
98
+ ``` bash
99
+ sudo pacman -S pgformatter
100
+ ```
101
+
102
+ macOS:
103
+
104
+ ``` bash
105
+ brew install pgformatter
106
+ ```
107
+
78
108
### Get the code
79
109
80
110
Clone frontend and backend code to local folders. Be sure to include ` --recursive ` to initialize git submodules.
You can’t perform that action at this time.
0 commit comments