mirror of
https://github.com/ansible/awx.git
synced 2026-02-13 17:24:45 -03:30
Adding jupyter notebook support to the AWX development environment
* Jupyter starts alongside the other awx services and is available on 0.0.0.0:8888 * make target: make jupyter * default settings in settings/development.py * Added jupyter, matplotlib, numpy to dev dependencies
This commit is contained in:
@@ -12,6 +12,7 @@ services:
|
||||
CELERY_RDB_HOST: 0.0.0.0
|
||||
AWX_GROUP_QUEUES: tower
|
||||
ports:
|
||||
- "8888:8888"
|
||||
- "8080:8080"
|
||||
- "5555:5555"
|
||||
- "8013:8013"
|
||||
|
||||
@@ -5,3 +5,4 @@ celeryd: make celeryd
|
||||
receiver: make receiver
|
||||
flower: make flower
|
||||
uwsgi: make uwsgi
|
||||
jupyter: make jupyter
|
||||
@@ -59,6 +59,14 @@ redirect_stderr=true
|
||||
stdout_logfile=/dev/fd/1
|
||||
stdout_logfile_maxbytes=0
|
||||
|
||||
[program:jupyter]
|
||||
command = make jupyter
|
||||
autostart = true
|
||||
autorestart = true
|
||||
redirect_stderr=true
|
||||
stdout_logfile=/dev/fd/1
|
||||
stdout_logfile_maxbytes=0
|
||||
|
||||
[group:awx-processes]
|
||||
programs=celeryd,receiver,runworker,uwsgi,daphne,nginx,flower
|
||||
priority=5
|
||||
|
||||
Reference in New Issue
Block a user