chore: better Prettier config for easier reviews

This commit is contained in:
2023-10-23 23:38:50 +02:00
parent 5591449094
commit 2aefe73afa
132 changed files with 4114 additions and 4019 deletions

View File

@ -1,23 +1,23 @@
services:
workspace:
build:
context: './'
dockerfile: './Dockerfile'
context: "./"
dockerfile: "./Dockerfile"
volumes:
- '..:/workspace:cached'
command: 'sleep infinity'
network_mode: 'host'
- "..:/workspace:cached"
command: "sleep infinity"
network_mode: "host"
thream-database:
image: 'postgres:15.4'
image: "postgres:15.4"
environment:
POSTGRES_USER: 'thream_user'
POSTGRES_PASSWORD: 'password'
POSTGRES_DB: 'thream'
POSTGRES_USER: "thream_user"
POSTGRES_PASSWORD: "password"
POSTGRES_DB: "thream"
volumes:
- 'thream-postgres-data:/var/lib/postgresql/data'
restart: 'unless-stopped'
network_mode: 'host'
- "thream-postgres-data:/var/lib/postgresql/data"
restart: "unless-stopped"
network_mode: "host"
volumes:
thream-postgres-data: