# HG changeset patch # User Steve Losh # Date 1695663451 14400 # Node ID 34d2977b5df7c3fbfe629c375736df6df1190aea # Parent 3c6edc9a220d64ba7c7d0481e3a08406c397446b Update diff -r 3c6edc9a220d -r 34d2977b5df7 README.markdown --- a/README.markdown Mon Sep 25 11:53:56 2023 -0400 +++ b/README.markdown Mon Sep 25 13:37:31 2023 -0400 @@ -1041,3 +1041,20 @@ (i.e. of itself). But when heat is applied, other proteins unfold and hsp90 starts chaperoning them more, which leaves HSF1 free to enter the nucleus and enhance transcription of hsp90. + +Remembering how to create a local Postgres DB for testing: + + sudo -u postgres psql + + postgres=# CREATE DATABASE example; + CREATE DATABASE + + postgres=# CREATE USER testuser WITH PASSWORD 'pass'; + CREATE ROLE + + postgres=# GRANT ALL PRIVILEGES ON DATABASE example TO testuser; + GRANT + + postgres=# \q + + psql postgresql://testuser:pass@localhost:5432/example