From 2f673bbe810fefffdd2d090b4367f71055e8137b Mon Sep 17 00:00:00 2001 From: "Jay R. Newlin" Date: Tue, 5 Feb 2019 16:00:36 -0500 Subject: [PATCH 1/3] Added note about Python versions --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7f6a28c2..d770eb58 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,10 @@ Before running the setup scripts, a couple of dependencies need to be installed locally: * `python` == 3.6 - Python version 3.6 must be installed on your machine before installing `pipenv`. + Python version 3.6 **must** be installed on your machine before installing `pipenv`. You can download Python 3.6 [from python.org](https://www.python.org/downloads/) - or use your preferred system package manager. + or use your preferred system package manager. Multiple versions of Python can exist on one + computer, but 3.6 is required for ATAT. * `pipenv` ATST requires `pipenv` to be installed for python dependency management. `pipenv` From 54a855962911b11ca595f8ddcc666fe60ebbfc85 Mon Sep 17 00:00:00 2001 From: "Jay R. Newlin" Date: Tue, 5 Feb 2019 17:18:04 -0500 Subject: [PATCH 2/3] Corrected missing punctuation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d770eb58..c0e6bb2f 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ locally: * `pipenv` ATST requires `pipenv` to be installed for python dependency management. `pipenv` will create the virtual environment that the app requires. [See - `pipenv`'s documentation for instructions on installing `pipenv]( + `pipenv`'s documentation for instructions on installing `pipenv`]( https://pipenv.readthedocs.io/en/latest/install/#installing-pipenv). * `yarn` From dbf7e1e130ba7d3b16f2540398dec86870f8f42b Mon Sep 17 00:00:00 2001 From: "Jay R. Newlin" Date: Tue, 5 Feb 2019 17:25:18 -0500 Subject: [PATCH 3/3] Added commentary about installing PostgreSQL --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c0e6bb2f..ad2f1bb7 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,10 @@ locally: * `postgres` >= 9.6 ATST requires a PostgreSQL instance (>= 9.6) for persistence. Have PostgresSQL installed - and running on the default port of 5432. You can verify that PostgresSQL is running + and running on the default port of 5432. (A good resource for installing and running + PostgreSQL for Macs is [Postgres.app](https://postgresapp.com/). Follow the instructions, + including the optional Step 3, and add `/Applications/Postgres.app/Contents/Versions/latest/bin` + to your `PATH` environment variable.) You can verify that PostgresSQL is running by executing `psql` and ensuring that a connection is successfully made. * `redis`