diff options
author | Matthew Jones <matburt@redhat.com> | 2020-04-08 16:02:05 +0200 |
---|---|---|
committer | Matthew Jones <matburt@redhat.com> | 2020-04-08 16:03:22 +0200 |
commit | 6abeaf2c55b042e7cdc4a9ecb40b23fe748d84d3 (patch) | |
tree | 3bf00928a226c84a9f41d592a086541bfe0611de /CONTRIBUTING.md | |
parent | Merge pull request #6607 from ryanpetrello/graphite-no-tags (diff) | |
download | awx-6abeaf2c55b042e7cdc4a9ecb40b23fe748d84d3.tar.xz awx-6abeaf2c55b042e7cdc4a9ecb40b23fe748d84d3.zip |
Update some contributing docs
* Update the tools called in the dev environment
* More RMQ purges from architecture docs
* Remove the old clusterdev target
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b7e06ebead..a1aeffb1ba 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -215,18 +215,23 @@ Using `docker exec`, this will create a session in the running *awx* container, If you want to start and use the development environment, you'll first need to bootstrap it by running the following command: ```bash -(container)# /bootstrap_development.sh +(container)# /usr/bin/bootstrap_development.sh ``` -The above will do all the setup tasks, including running database migrations, so it may take a couple minutes. +The above will do all the setup tasks, including running database migrations, so it may take a couple minutes. Once it's done it +will drop you back to the shell. -Now you can start each service individually, or start all services in a pre-configured tmux session like so: +In order to launch all developer services: ```bash -(container)# cd /awx_devel -(container)# make server +(container)# /usr/bin/launch_awx.sh ``` +`launch_awx.sh` also calls `bootstrap_development.sh` so if all you are doing is launching the supervisor to start all services, you don't +need to call `bootstrap_development.sh` first. + + + ### Post Build Steps Before you can log in and use the system, you will need to create an admin user. Optionally, you may also want to load some demo data. |