From 7b970132554f84d36a43307bc36a305155acd07b Mon Sep 17 00:00:00 2001 From: John Skiles Skinner Date: Wed, 27 Mar 2024 09:05:08 -0700 Subject: [PATCH] Notes about running ./run.sh and make run-profile Explain what to expect when running `./run.sh` and `make run-profile` so that the user can determine if they have run correctly --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bb38882df..da82c6937 100644 --- a/README.md +++ b/README.md @@ -289,9 +289,12 @@ cd terraform/development ./run.sh ``` -In addition to some infrastructure setup, this will also create a local `.env` -file for you in the project's root directory, which will include a handful of -project-specific environment variables. +If this runs correctly, Terraform will ask you if you want to create some +resources. Answer `yes`. + +The script will also create a local `.env` file for you in the project's +root directory, which will include a handful of project-specific environment +variables. Lastly, if you didn't already start PostgreSQL and Redis above, be sure to do so now: @@ -385,6 +388,9 @@ Now you can run the web server and background workers for asynchronous jobs: make run-procfile ``` +If it runs correctly, you will be able to visit http://127.0.0.1:6011/ and see +JSON from the API in your web browser. + This will run all of the services within the same shell session. If you need to run them separately to help with debugging or tracing logs, you can do so by opening three sepearate shell sessions and running one of these commands in each