Marc Cataford
bf7431f747
* feat(backend): sub fetch endpoints * ci: skip frontend/backend if no frontend change * ci: backend formatting * build: tooling and commands * build: psycopg2 * build: dependency locking tooling * build: pylint * feat: migration handling * feat: rudimentary upload flow * feat: basic file create/read interactions * docs: stubs * build: migration command
11 lines
181 B
YAML
11 lines
181 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
database:
|
|
image: postgres:15.3
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
POSTGRES_PASSWORD: $DATABASE_PASSWORD
|