File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Auto detect text files and perform LF normalization
2+ * text =auto
3+
4+ # Shell scripts should always use LF
5+ * .sh text eol =lf
6+ init.sh text eol =lf
7+
8+ # Docker files should use LF
9+ Dockerfile text eol =lf
10+ * .dockerfile text eol =lf
11+ docker-compose * .yml text eol =lf
12+
13+ # YAML files
14+ * .yaml text eol =lf
15+ * .yml text eol =lf
16+
17+ # SQL files
18+ * .sql text eol =lf
Original file line number Diff line number Diff line change 44
55You can install PostgreSQL local https://www.postgresql.org/download/ or use Docker (see ` docker-compose.yml ` ):
66```
7- version: "3.2"
87services:
98 api:
109 build:
@@ -17,7 +16,7 @@ services:
1716 restart: unless-stopped
1817
1918 postgres:
20- image: postgres
19+ image: postgres:16
2120 environment:
2221 POSTGRES_USER: codex
2322 POSTGRES_DB: notes
Original file line number Diff line number Diff line change 1- version : ' 3.2'
2-
31services :
42 api :
53 build :
@@ -12,7 +10,7 @@ services:
1210 restart : unless-stopped
1311
1412 postgres :
15- image : postgres
13+ image : postgres:16
1614 environment :
1715 POSTGRES_USER : codex
1816 POSTGRES_DB : notes
Original file line number Diff line number Diff line change 11#! /bin/sh
22set -e
3- node dist/index.js
3+ node dist/index.js
You can’t perform that action at this time.
0 commit comments