]> Untitled Git - lemmy.git/commitdiff
Add instructions for unning db-init.sh to administration_configuration.md
authorRichie Zhang <12566991+StaticallyTypedRice@users.noreply.github.com>
Thu, 6 Feb 2020 20:26:01 +0000 (12:26 -0800)
committerGitHub <noreply@github.com>
Thu, 6 Feb 2020 20:26:01 +0000 (12:26 -0800)
docs/src/administration_configuration.md

index 73ea35042340e6408cbc3edb10c94d5020bf9528..c47d32362fa00c59a47c9931b91e9708a8ef34d7 100644 (file)
@@ -4,3 +4,12 @@ Additionally, you can override any config files with environment variables. Thes
 `LEMMY__DATABASE__POOL_SIZE=10`.
 
 An additional option `LEMMY_DATABASE_URL` is available, which can be used with a PostgreSQL connection string like `postgres://lemmy:password@lemmy_db:5432/lemmy`, passing all connection details at once.
+
+If the Docker container is not used, manually create the database specified above by running the following commands:
+
+```bash
+# Start at the root of the Lemmy repository
+
+cd server
+./db-init.sh
+```