2022-04-27 11:39:20 +00:00
|
|
|
pipeline:
|
|
|
|
backend:
|
|
|
|
image: python
|
|
|
|
environment:
|
|
|
|
- DATABSE_URL=postgres://postgres:password@database:5432/postgres
|
2022-06-10 17:04:08 +00:00
|
|
|
- EMAIL_URL=smtp://admin:password@localhost:10025
|
2022-04-27 11:39:20 +00:00
|
|
|
commands:
|
|
|
|
- pip install virtualenv
|
|
|
|
- make env
|
|
|
|
- make lint
|
|
|
|
- make test
|
|
|
|
|
|
|
|
services:
|
|
|
|
database:
|
|
|
|
image: postgres
|
|
|
|
environment:
|
|
|
|
- POSTGRES_PASSWORD=password
|
2022-06-10 17:04:08 +00:00
|
|
|
|
|
|
|
smtp:
|
|
|
|
image: maildev/maildev
|
|
|
|
environment:
|
|
|
|
- MAILDEV_SMTP_PORT=10025
|
|
|
|
- MAILDEV_INCOMING_USER=admin
|
|
|
|
- MAILDEV_INCOMING_PASS=password
|