fix: many wins were broken 📝 (#789)
This commit is contained in:
parent
efd2230eba
commit
529793fbcb
7 changed files with 47 additions and 47 deletions
|
@ -2,4 +2,4 @@
|
||||||
title: Commands
|
title: Commands
|
||||||
---
|
---
|
||||||
|
|
||||||
- [`atuin import`](/docs/commands/import)
|
- [`atuin import`](../../docs/commands/import)
|
||||||
|
|
|
@ -8,7 +8,7 @@ little basic, but more features to come.
|
||||||
You provide the starting point, and Atuin computes the stats for 24h from that point.
|
You provide the starting point, and Atuin computes the stats for 24h from that point.
|
||||||
Date parsing is provided by `interim`, which supports different formats
|
Date parsing is provided by `interim`, which supports different formats
|
||||||
for full or relative dates. Certain formats rely on the dialect option in your
|
for full or relative dates. Certain formats rely on the dialect option in your
|
||||||
[configuration](/docs/config/config.md#dialect) to differentiate day from month.
|
[configuration](../../docs/config/config.md#dialect) to differentiate day from month.
|
||||||
Refer to [the module's documentation](https://docs.rs/interim/0.1.0/interim/#supported-formats) for more details on the supported date formats.
|
Refer to [the module's documentation](https://docs.rs/interim/0.1.0/interim/#supported-formats) for more details on the supported date formats.
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -19,11 +19,11 @@ export ATUIN_CONFIG_DIR = /home/ellie/.atuin
|
||||||
The client runs on a user's machine, and unless you're running a server, this
|
The client runs on a user's machine, and unless you're running a server, this
|
||||||
is what you care about.
|
is what you care about.
|
||||||
|
|
||||||
See [config.toml](../atuin-client/config.toml) for an example
|
See [config.toml](../../../atuin-client/config.toml) for an example
|
||||||
|
|
||||||
### `dialect`
|
### `dialect`
|
||||||
|
|
||||||
This configures how the [stats](/docs/commands/stats.md) command parses dates. It has two
|
This configures how the [stats](../commands/stats.md) command parses dates. It has two
|
||||||
possible values
|
possible values
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -211,5 +211,5 @@ Install `atuin` shell plugin in zsh, bash, or fish with [Fig](https://fig.io) in
|
||||||
Atuin is named after "The Great A'Tuin", a giant turtle from Terry Pratchett's
|
Atuin is named after "The Great A'Tuin", a giant turtle from Terry Pratchett's
|
||||||
Discworld series of books.
|
Discworld series of books.
|
||||||
|
|
||||||
[English]: ./README.md
|
[English]: ../README.md
|
||||||
[简体中文]: ./docs/zh-CN/README.md
|
[简体中文]: ../../docs/zh-CN/README.md
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
You could host your own Atuin server using the Kubernetes platform.
|
You could host your own Atuin server using the Kubernetes platform.
|
||||||
|
|
||||||
Create a [`secrets.yaml`](../k8s/secrets.yaml) file for the database credentials:
|
Create a [`secrets.yaml`](../../../k8s/secrets.yaml) file for the database credentials:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
|
@ -20,7 +20,7 @@ stringData:
|
||||||
immutable: true
|
immutable: true
|
||||||
```
|
```
|
||||||
|
|
||||||
Create a [`atuin.yaml`](../k8s/atuin.yaml) file for the Atuin server:
|
Create a [`atuin.yaml`](../../../k8s/atuin.yaml) file for the Atuin server:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
---
|
---
|
||||||
|
@ -165,7 +165,7 @@ spec:
|
||||||
storage: 10Mi
|
storage: 10Mi
|
||||||
```
|
```
|
||||||
|
|
||||||
Finally, you may want to use a separate namespace for atuin, by creating a [`namespace.yaml`](../k8s/namespaces.yaml) file:
|
Finally, you may want to use a separate namespace for atuin, by creating a [`namespaces.yaml`](../../../k8s/namespaces.yaml) file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
|
@ -191,4 +191,4 @@ Deploy the Atuin server using `kubectl`:
|
||||||
-f ./atuin.yaml
|
-f ./atuin.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
The sample files above are also in the [k8s](../k8s) folder of the atuin repository.
|
The sample files above are also in the [k8s](../../../k8s/) folder of the atuin repository.
|
||||||
|
|
|
@ -18,7 +18,7 @@ export ATUIN_CONFIG_DIR = /home/ellie/.atuin
|
||||||
|
|
||||||
Этот файл используется когда клиент работает на локальной машине (не сервере).
|
Этот файл используется когда клиент работает на локальной машине (не сервере).
|
||||||
|
|
||||||
See [config.toml](../atuin-client/config.toml) for an example
|
See [config.toml](../../atuin-client/config.toml) for an example
|
||||||
|
|
||||||
### `dialect`
|
### `dialect`
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue