Files
find/env.d/development/postgresql.dist
T
Samuel Paccoud cb33899132 (backend) first working prototype
This is built from our boilerplate and adds a first working
prototype of indexing (single document or bulk) and searching
(with basic filtering and sorting. No authentication yet).

Run `make demo` to generate an index for development.
2024-09-02 20:15:41 +02:00

11 lines
207 B
Plaintext

# Postgresql db container configuration
POSTGRES_DB=drive
POSTGRES_USER=dinum
POSTGRES_PASSWORD=pass
# App database configuration
DB_HOST=postgresql
DB_NAME=drive
DB_USER=dinum
DB_PASSWORD=pass
DB_PORT=5432