forked from stellar/django-polaris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheroku.yml
36 lines (36 loc) · 942 Bytes
/
heroku.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
build:
docker:
reference-server: Dockerfile
release:
image: reference-server
command:
- python manage.py migrate
run:
watch_transactions:
image: reference-server
command:
- python manage.py watch_transactions
check_trustlines:
image: reference-server
command:
- python manage.py check_trustlines --loop
poll_pending_deposits:
image: reference-server
command:
- python manage.py poll_pending_deposits --loop
execute_outgoing_transactions:
image: reference-server
command:
- python manage.py execute_outgoing_transactions --loop
poll_outgoing_transactions:
image: reference-server
command:
- python manage.py poll_outgoing_transactions --loop
sign_multisig_transactions:
image: reference-server
command:
- python manage.py sign_multisig_transactions --loop
web:
image: reference-server
command:
- gunicorn server.wsgi