ts_sqlx 0.1.1

Typescript SQLx compile-time checked queries without a DSL.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: "3.3"

services:
  postgres:
    image: postgres:15-alpine3.18
    restart: always
    environment:
      - POSTGRES_USER=postgres
      - POSTGRES_PASSWORD=postgres
    volumes:
      - postgres:/var/lib/postgresql/data
    ports:
      - "5432:5432"

volumes:
  postgres: