summaryrefslogtreecommitdiff
path: root/topics
diff options
context:
space:
mode:
authorArun Isaac2022-09-06 14:08:25 +0530
committerArun Isaac2022-09-06 14:09:22 +0530
commit6c82d26247de360ad1a276cb77c41b6bbae51e9e (patch)
tree6959d81ddbebdd20a37596655d21960274783217 /topics
parent7f0b25e023a21a95aed4aaac0a9b7a7b6f97cf4e (diff)
downloadgn-gemtext-6c82d26247de360ad1a276cb77c41b6bbae51e9e.tar.gz
Replace setup with the verb phrase "set up".
Diffstat (limited to 'topics')
-rw-r--r--topics/setting-up-local-development-database.gmi10
1 files changed, 5 insertions, 5 deletions
diff --git a/topics/setting-up-local-development-database.gmi b/topics/setting-up-local-development-database.gmi
index 1f844c3..a6fdb5e 100644
--- a/topics/setting-up-local-development-database.gmi
+++ b/topics/setting-up-local-development-database.gmi
@@ -2,14 +2,14 @@
## Introduction
-You need to setup a quick local database for development without needing root permissions and polluting your environment.
+You need to set up a quick local database for development without needing root permissions and polluting your environment.
* An assumption is made that the GeneNetwork2 profile is in ~/opt/gn_profiles/gn2_latest for the purposes of this documentation. Please replace as appropriate.
* We install the database files under ~/genenetwork/mariadb. Change as appropriate.
-## Setup Database Server
+## Set up Database Server
-Setup directories
+Set up directories
```
mkdir -pv ~/genenetwork/mariadb/var/run
@@ -17,7 +17,7 @@ mkdir -pv ~/genenetwork/mariadb/var/lib/data
mkdir -pv ~/genenetwork/mariadb/var/lib/mysql
```
-Setup default my.cnf
+Set up default my.cnf
```
cat <<EOF > ~/genenetwork/mariadb/my.cnf
@@ -72,7 +72,7 @@ $ ~/opt/gn_profiles/gn2_latest/bin/mysql \
enter the newly set password and voila, you are logged in and your user has the password set up.
-Now, setup a new user, say webqtlout, and a default database they can connect to
+Now, set up a new user, say webqtlout, and a default database they can connect to
```
MariaDB [mysql]> CREATE DATABASE webqtlout;