aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md23
-rw-r--r--mkdocs.yml1
-rw-r--r--technical.md19
3 files changed, 23 insertions, 20 deletions
diff --git a/README.md b/README.md
index a8f5ea9..d034973 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,28 @@
Documentation resources for upcoming [dat](https://github.com/maxogden/dat) 1.0 release and the surrounding ecosystem.
+## Hosting
+
+By default, dat looks to host on port 3282, and if taken, will choose a random open port.
+
+## Hidden folder
+
+Dat stores its data in a hidden folder that is stored by default in the user's home directory.
+
+```
+~/.dat
+```
+
+Because of this, data is only ever downloaded once. That is, if you have multiple projects that use the same data (perhaps at different versions) on the same machine, dat will first check the global `.dat` folder.
+
+The global `.dat` folder has inside:
+
+```
+$ ls ~/.dat
+db
+config.json
+```
+
## Dat dependency overview
#### [hyperdrive](https://github.com/mafintosh/hyperdrive)
@@ -11,3 +33,4 @@ The file sharing network dat uses to distribute files and data. A technical spec
#### [discovery-channel](https://github.com/maxogden/discovery-channel)
This is the module dat uses to find peers on the local network or the internet who are sharing the same files and data that you are.
+
diff --git a/mkdocs.yml b/mkdocs.yml
index e316509..161a52a 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -2,7 +2,6 @@ site_name: Dat project
theme: readthedocs
pages:
- Home: 'README.md'
-- Technical Guide: 'technical.md'
- Meta:
- 'Changelog': 'meta/changelog.md'
- 'Collaborators': 'meta/collaborators.md'
diff --git a/technical.md b/technical.md
deleted file mode 100644
index 3c68953..0000000
--- a/technical.md
+++ /dev/null
@@ -1,19 +0,0 @@
-## Hidden folder
-
-Dat stores its data in a hidden folder that is stored by default in the user's home directory.
-
-```
-~/.dat
-```
-
-Because of this, data is only ever downloaded once. That is, if you have multiple projects that use the same data (perhaps at different versions) on the same machine, dat will first check the global `.dat` folder to see if the data has already been downloaded before querying the network.
-
-The global `.dat` folder has:
-
-```
-$ ls ~/.dat
-db
-config
-```
-
-`dat` will first check `/root/.dat` and then `~/.dat`. So, if you want to have the .dat available globally, move the folder to `/root/.dat`.