mirror of
https://github.com/ansible/awx.git
synced 2026-02-24 06:26:00 -03:30
Updates to Makefile and CONTRIBUTING
...for the RabbitMQ to Redis changeout.
This commit is contained in:
9
Makefile
9
Makefile
@@ -152,13 +152,20 @@ develop:
|
||||
@if [ "$(VIRTUAL_ENV)" ]; then \
|
||||
pip uninstall -y awx; \
|
||||
$(PYTHON) setup.py develop; \
|
||||
awx-manage register_instance --primary --ip-address=127.0.0.1; \
|
||||
else \
|
||||
sudo pip uninstall -y awx; \
|
||||
sudo $(PYTHON) setup.py develop; \
|
||||
sudo awx-manage register_instance --primary --ip-address=127.0.0.1; \
|
||||
fi
|
||||
|
||||
# Do any one-time init tasks.
|
||||
init:
|
||||
@if [ "$(VIRTUAL_ENV)" ]; then \
|
||||
awx-manage register_instance --primary --ip-address=127.0.0.1; \
|
||||
else \
|
||||
sudo awx-manage register_instance --primary --ip-address=127.0.0.1; \
|
||||
fi
|
||||
|
||||
# Refresh development environment after pulling new code.
|
||||
refresh: clean requirements develop migrate
|
||||
|
||||
|
||||
Reference in New Issue
Block a user