You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
pipeline:
|
|
backend:
|
|
image: python
|
|
environment:
|
|
- DATABSE_URL=postgres://postgres:password@database:5432/postgres
|
|
commands:
|
|
- pip install virtualenv
|
|
- make env
|
|
- make lint
|
|
- make test
|
|
|
|
services:
|
|
database:
|
|
image: postgres
|
|
environment:
|
|
- POSTGRES_PASSWORD=password
|