aboutsummaryrefslogtreecommitdiff
path: root/docs_src/installation.md
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-08-12 15:37:30 +0200
committerHampusM <hampus@hampusmat.com>2021-08-12 15:37:30 +0200
commitd41b27f43335cfb1a8ff49aeb121f992332429cf (patch)
tree93b6e1ec9b292c3d80ee1a538d0e729612148052 /docs_src/installation.md
parent30f0b2ee1f494be1786280040fb47ec18bde8a6d (diff)
Cleaned up the settings implementation & renamed base_dir project-wide to git_dir
Diffstat (limited to 'docs_src/installation.md')
-rw-r--r--docs_src/installation.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs_src/installation.md b/docs_src/installation.md
index 723d35e..f19c4e0 100644
--- a/docs_src/installation.md
+++ b/docs_src/installation.md
@@ -28,15 +28,15 @@ And finally, build the project.
`$ yarn build`
-The final step is to create a file called `settings.yml` with the following content.
+The final step is to create a file called `settings.json` with the following content.
```
-host: (Host address)
-port: (Port)
-dev_port: (Port for development server)
-production: (Set this to true unless you're doing changes to Githermit)
-title: (Title of your Githermit instance)
-about: (Short description of your Githermit instance)
-base_dir: (Directory where all of your bare Git repositories are located)
+{
+ "host": "(Host address)",
+ "port": (Port),
+ "title": "(Title of your Githermit instance)",
+ "about": "(Short description of your Githermit instance)",
+ "git_dir: "(Directory where all of your bare Git repositories are located)"
+}
```
## Starting