dashboard/.woodpecker.yml

37 lines
868 B
YAML
Raw Normal View History

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
2022-06-18 16:48:36 +00:00
- make test
2022-06-17 18:37:47 +00:00
- make coverage
- make integration-test
2022-06-23 15:40:42 +00:00
secrets: [ STRIPE_PUBLIC_KEY, STRIPE_SECRET_KEY ]
2022-04-27 11:39:20 +00:00
2022-06-23 15:40:42 +00:00
services:
database:
image: postgres
environment:
- POSTGRES_PASSWORD=password
gitea:
image: gitea/gitea:1.16.5
container_name: hostea-dash-gitea
# network_mode: host
restart: always
smtp:
image: maildev/maildev:latest
restart: always
container_name: hostea-dash-maildev
# network_mode: host
environment:
- MAILDEV_SMTP_PORT=10025
- MAILDEV_INCOMING_USER=admin
- MAILDEV_INCOMING_PASS=password