cb33899132
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.
11 lines
207 B
Plaintext
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 |