document onboarding/login & some settings
|
@ -1,8 +1,8 @@
|
|||
[[docs]]
|
||||
name = "Prologue"
|
||||
name = "Intro"
|
||||
weight = 9
|
||||
identifier = "prologue"
|
||||
url = "/docs/prologue/"
|
||||
identifier = "intro"
|
||||
url = "/docs/intro/"
|
||||
|
||||
[[dev]]
|
||||
name = "Prologue"
|
||||
|
@ -64,6 +64,12 @@
|
|||
identifier = "wallet"
|
||||
url = "/dev_guide/wallet/"
|
||||
|
||||
[[docs]]
|
||||
name = "Settings"
|
||||
weight = 15
|
||||
identifier = "settings"
|
||||
url = "/docs/settings/"
|
||||
|
||||
[[docs]]
|
||||
name = "Help"
|
||||
weight = 60
|
||||
|
@ -78,7 +84,7 @@
|
|||
|
||||
[[main]]
|
||||
name = "Docs"
|
||||
url = "/docs/prologue/introduction/"
|
||||
url = "/docs/intro/introduction"
|
||||
weight = 10
|
||||
|
||||
[[main]]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
title : "Prologue"
|
||||
description: "Prologue Doks."
|
||||
title : "Intro"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-06T08:48:45+00:00
|
||||
lastmod: 2020-10-06T08:48:45+00:00
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
title: "Advanced options"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-13T15:21:01+02:00
|
||||
lastmod: 2020-10-13T15:21:01+02:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "intro"
|
||||
weight: 130
|
||||
toc: true
|
||||
---
|
||||
|
||||
## Command line options
|
||||
|
||||
## Data folders
|
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
title: "Installation"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-11-16T13:59:39+01:00
|
||||
lastmod: 2020-11-16T13:59:39+01:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "intro"
|
||||
weight: 110
|
||||
toc: true
|
||||
---
|
||||
|
||||
## MacOs
|
||||
|
||||
## Linux
|
||||
|
||||
## Windows
|
||||
|
||||
## Building from source
|
|
@ -8,7 +8,7 @@ draft: false
|
|||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "prologue"
|
||||
parent: "intro"
|
||||
weight: 100
|
||||
toc: true
|
||||
---
|
|
@ -12,6 +12,10 @@ menu:
|
|||
toc: true
|
||||
---
|
||||
|
||||
## Disclaimer
|
||||
|
||||
![url_bar](/images/onboarding/disclaimer.png)
|
||||
|
||||
## First Time
|
||||
|
||||
![url_bar](/images/onboarding/initial.png)
|
||||
|
|
|
@ -14,4 +14,12 @@ toc: true
|
|||
|
||||
![url_bar](/images/onboarding/login.png)
|
||||
|
||||
## multiple accounts
|
||||
|
||||
![url_bar](/images/onboarding/login2.png)
|
||||
|
||||
## with only 1 account
|
||||
|
||||
it will ask if you want to add an existing key or crate a new one
|
||||
|
||||
![url_bar](/images/onboarding/login3.png)
|
||||
|
|
|
@ -1,118 +0,0 @@
|
|||
---
|
||||
title: "Commands"
|
||||
description: "Doks comes with commands for common tasks."
|
||||
lead: "Doks comes with commands for common tasks."
|
||||
date: 2020-10-13T15:21:01+02:00
|
||||
lastmod: 2020-10-13T15:21:01+02:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "prologue"
|
||||
weight: 130
|
||||
toc: true
|
||||
---
|
||||
|
||||
{{< alert icon="💡" text="You can change the commands in the scripts section of `./package.json`." >}}
|
||||
|
||||
## create
|
||||
|
||||
Create new content for your site:
|
||||
|
||||
{{< btn-copy text="npm run create" >}}
|
||||
|
||||
```bash
|
||||
npm run create [path] [flags]
|
||||
```
|
||||
|
||||
See also the Hugo docs: [hugo new](https://gohugo.io/commands/hugo_new/).
|
||||
|
||||
## lint
|
||||
|
||||
Check scripts, styles, and markdown for errors:
|
||||
|
||||
{{< btn-copy text="npm run lint" >}}
|
||||
|
||||
```bash
|
||||
npm run lint
|
||||
```
|
||||
|
||||
### scripts
|
||||
|
||||
Check scripts for errors:
|
||||
|
||||
{{< btn-copy text="npm run lint:scripts" >}}
|
||||
|
||||
```bash
|
||||
npm run lint:scripts [-- --fix]
|
||||
```
|
||||
|
||||
### styles
|
||||
|
||||
Check styles for errors:
|
||||
|
||||
{{< btn-copy text="npm run lint:styles" >}}
|
||||
|
||||
```bash
|
||||
npm run lint:styles [-- --fix]
|
||||
```
|
||||
|
||||
### markdown
|
||||
|
||||
Check markdown for errors:
|
||||
|
||||
{{< btn-copy text="npm run lint:markdown" >}}
|
||||
|
||||
```bash
|
||||
npm run lint:markdown [-- --fix]
|
||||
```
|
||||
|
||||
## clean
|
||||
|
||||
Delete temporary directories:
|
||||
|
||||
{{< btn-copy text="npm run clean" >}}
|
||||
|
||||
```bash
|
||||
npm run clean
|
||||
```
|
||||
|
||||
## start
|
||||
|
||||
Start local development server:
|
||||
|
||||
{{< btn-copy text="npm run start" >}}
|
||||
|
||||
```bash
|
||||
npm run start
|
||||
```
|
||||
|
||||
## build
|
||||
|
||||
Build production website:
|
||||
|
||||
{{< btn-copy text="npm run build" >}}
|
||||
|
||||
```bash
|
||||
npm run build
|
||||
```
|
||||
|
||||
### functions
|
||||
|
||||
Build Lambda functions:
|
||||
|
||||
{{< btn-copy text="npm run build:functions" >}}
|
||||
|
||||
```bash
|
||||
npm run build:functions
|
||||
```
|
||||
|
||||
### preview
|
||||
|
||||
Build production website including draft and future content:
|
||||
|
||||
{{< btn-copy text="npm run build:preview" >}}
|
||||
|
||||
```bash
|
||||
npm run build:preview
|
||||
```
|
|
@ -1,73 +0,0 @@
|
|||
---
|
||||
title: "Quick Start"
|
||||
description: "One page summary of how to start a new Doks project."
|
||||
lead: "One page summary of how to start a new Doks project."
|
||||
date: 2020-11-16T13:59:39+01:00
|
||||
lastmod: 2020-11-16T13:59:39+01:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "prologue"
|
||||
weight: 110
|
||||
toc: true
|
||||
---
|
||||
|
||||
## Requirements
|
||||
|
||||
- Download and install [Node.js](https://nodejs.org/) (it includes npm) for your platform.
|
||||
|
||||
## Start a new Doks project
|
||||
|
||||
Create a new site, change directories, install dependencies, and start development server.
|
||||
|
||||
### Create a new site
|
||||
|
||||
Doks is available as a child theme, and a starter theme:
|
||||
|
||||
- Use the Doks child theme, if you do __not__ plan to customize a lot, and/or need future Doks updates.
|
||||
- Use the Doks starter theme, if you plan to customize a lot, and/or do __not__ need future Doks updates.
|
||||
|
||||
Not quite sure? Use the Doks child theme.
|
||||
|
||||
#### Doks child theme
|
||||
|
||||
{{< btn-copy text="git clone https://github.com/h-enk/doks-child-theme.git my-doks-site" >}}
|
||||
|
||||
```bash
|
||||
git clone https://github.com/h-enk/doks-child-theme.git my-doks-site
|
||||
```
|
||||
|
||||
#### Doks starter theme
|
||||
|
||||
{{< btn-copy text="git clone https://github.com/h-enk/doks.git my-doks-site" >}}
|
||||
|
||||
```bash
|
||||
git clone https://github.com/h-enk/doks.git my-doks-site
|
||||
```
|
||||
|
||||
### Change directories
|
||||
|
||||
{{< btn-copy text="cd my-doks-site" >}}
|
||||
|
||||
```bash
|
||||
cd my-doks-site
|
||||
```
|
||||
|
||||
### Install dependencies
|
||||
|
||||
{{< btn-copy text="npm install" >}}
|
||||
|
||||
```bash
|
||||
npm install
|
||||
```
|
||||
|
||||
### Start development server
|
||||
|
||||
{{< btn-copy text="npm run start" >}}
|
||||
|
||||
```bash
|
||||
npm run start
|
||||
```
|
||||
|
||||
Doks will start the Hugo development webserver accessible by default at `http://localhost:1313`. Saved changes will live reload in the browser.
|
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
title : "Settings"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-06T08:48:45+00:00
|
||||
lastmod: 2020-10-06T08:48:45+00:00
|
||||
draft: false
|
||||
images: []
|
||||
---
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
title : "Advanced Settings"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-06T08:48:23+00:00
|
||||
lastmod: 2020-10-06T08:48:23+00:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "settings"
|
||||
toc: true
|
||||
---
|
||||
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title : "Appearance"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-06T08:48:23+00:00
|
||||
lastmod: 2020-10-06T08:48:23+00:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "settings"
|
||||
toc: true
|
||||
---
|
|
@ -0,0 +1,61 @@
|
|||
---
|
||||
title : "Contacts Management"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-06T08:48:23+00:00
|
||||
lastmod: 2020-10-06T08:48:23+00:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "settings"
|
||||
toc: true
|
||||
---
|
||||
|
||||
## selecting contacts section
|
||||
|
||||
![url_bar](/images/settings/contacts/contacts.png)
|
||||
|
||||
## adding a new contact
|
||||
|
||||
![url_bar](/images/settings/contacts/add_contact_modal.png)
|
||||
|
||||
![url_bar](/images/settings/contacts/add_contact_modal2.png)
|
||||
|
||||
## contact list
|
||||
|
||||
![url_bar](/images/settings/contacts/contacts2.png)
|
||||
|
||||
![url_bar](/images/settings/contacts/context_menu.png)
|
||||
|
||||
## viewing a contact qr code
|
||||
|
||||
![url_bar](/images/settings/contacts/qr_code.png)
|
||||
|
||||
## assigning a local nickname to the contact
|
||||
|
||||
![url_bar](/images/settings/contacts/profile_modal.png)
|
||||
|
||||
![url_bar](/images/settings/contacts/nickname_modal.png)
|
||||
|
||||
![url_bar](/images/settings/contacts/profile_modal2.png)
|
||||
|
||||
## blocking a contact
|
||||
|
||||
![url_bar](/images/settings/contacts/profile_modal.png)
|
||||
|
||||
![url_bar](/images/settings/contacts/blocked_contacts_modal.png)
|
||||
|
||||
![url_bar](/images/settings/contacts/block_user_confirmation.png)
|
||||
|
||||
## removing a contact
|
||||
|
||||
![url_bar](/images/settings/contacts/profile_modal.png)
|
||||
|
||||
## viewing blocked contacts
|
||||
|
||||
![url_bar](/images/settings/contacts/blocked_contacts.png)
|
||||
|
||||
## invite friends
|
||||
|
||||
![url_bar](/images/settings/contacts/invite_friends.png)
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title : "ENS Username"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-06T08:48:23+00:00
|
||||
lastmod: 2020-10-06T08:48:23+00:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "settings"
|
||||
toc: true
|
||||
---
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title : "Language"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-06T08:48:23+00:00
|
||||
lastmod: 2020-10-06T08:48:23+00:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "settings"
|
||||
toc: true
|
||||
---
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title : "Notifications & Sounds"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-06T08:48:23+00:00
|
||||
lastmod: 2020-10-06T08:48:23+00:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "settings"
|
||||
toc: true
|
||||
---
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title : "Privacy & Security"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-06T08:48:23+00:00
|
||||
lastmod: 2020-10-06T08:48:23+00:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "settings"
|
||||
toc: true
|
||||
---
|
|
@ -0,0 +1,41 @@
|
|||
---
|
||||
title : "Profile"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-06T08:48:23+00:00
|
||||
lastmod: 2020-10-06T08:48:23+00:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "settings"
|
||||
toc: true
|
||||
---
|
||||
|
||||
## selecting My profile section
|
||||
|
||||
![url_bar](/images/settings/profile/my_profile.png)
|
||||
|
||||
## viewing QR code for profile
|
||||
|
||||
![url_bar](/images/settings/profile/qr_code.png)
|
||||
|
||||
![url_bar](/images/settings/profile/qr_code_modal.png)
|
||||
|
||||
## uploading a profile photo
|
||||
|
||||
![url_bar](/images/settings/profile/profile_picture.png)
|
||||
|
||||
![url_bar](/images/settings/profile/profile_picture2.png)
|
||||
|
||||
![url_bar](/images/settings/profile/profile_picture3.png)
|
||||
|
||||
## removing profile photo
|
||||
|
||||
![url_bar](/images/settings/profile/profile_picture3.png)
|
||||
|
||||
## expanding key
|
||||
|
||||
![url_bar](/images/settings/profile/key_expand.png)
|
||||
|
||||
![url_bar](/images/settings/profile/key_expand2.png)
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title : "Syncing Devices"
|
||||
description: ""
|
||||
lead: ""
|
||||
date: 2020-10-06T08:48:23+00:00
|
||||
lastmod: 2020-10-06T08:48:23+00:00
|
||||
draft: false
|
||||
images: []
|
||||
menu:
|
||||
docs:
|
||||
parent: "settings"
|
||||
toc: true
|
||||
---
|
After Width: | Height: | Size: 236 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 54 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 209 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 70 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 55 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 297 KiB |
After Width: | Height: | Size: 68 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 16 KiB |