Update build docs instructions (#2428)

This commit is contained in:
Michalis Kargakis 2019-01-22 14:39:29 +01:00 committed by Yeastplume
parent c34c991472
commit cba93e2121
2 changed files with 7 additions and 7 deletions

View file

@ -50,7 +50,7 @@ A successful build gets you:
All data, configuration and log files created and used by grin are located in the hidden All data, configuration and log files created and used by grin are located in the hidden
`~/.grin` directory (under your user home directory) by default. You can modify all configuration `~/.grin` directory (under your user home directory) by default. You can modify all configuration
values by editing the file `~/.grin/grin-server.toml`. values by editing the file `~/.grin/main/grin-server.toml`.
It is also possible to have grin create its data files in the current directory. To do this, run It is also possible to have grin create its data files in the current directory. To do this, run
@ -61,15 +61,15 @@ grin server config
Which will generate a `grin-server.toml` file in the current directory, pre-configured to use Which will generate a `grin-server.toml` file in the current directory, pre-configured to use
the current directory for all of its data. Running grin from a directory that contains a the current directory for all of its data. Running grin from a directory that contains a
`grin-server.toml` file will use the values in that file instead of the default `grin-server.toml` file will use the values in that file instead of the default
`~/.grin/grin-server.toml`. `~/.grin/main/grin-server.toml`.
While testing, put the grin binary on your path like this: While testing, put the grin binary on your path like this:
```sh ```sh
export PATH=/path/to/grin/dir/target/debug:$PATH export PATH=`pwd`/target/release:$PATH
``` ```
Where path/to/grin/dir is your absolute path to the root directory of your Grin installation. assuming you are running from the root directory of your Grin installation.
You can then run `grin` directly (try `grin help` for more options). You can then run `grin` directly (try `grin help` for more options).

View file

@ -48,7 +48,7 @@ Con una compilación finalizada se obtiene:
* `target/release/grin` - los binarios principales de grin * `target/release/grin` - los binarios principales de grin
Todos los datos, configuración y archivos de registro creados y utilizados por Grin se encuentran en el directorio oculto `~/.grin` (bajo el directorio home del usuario) por defecto. Puede modificar toda la configuración editando el archivo `~/.grin/grin-server.toml`. Todos los datos, configuración y archivos de registro creados y utilizados por Grin se encuentran en el directorio oculto `~/.grin` (bajo el directorio home del usuario) por defecto. Puede modificar toda la configuración editando el archivo `~/.grin/main/grin-server.toml`.
También es posible hacer que Grin cree sus propios archivos de datos en el directorio actual. Para ello ejecute: También es posible hacer que Grin cree sus propios archivos de datos en el directorio actual. Para ello ejecute:
@ -56,12 +56,12 @@ También es posible hacer que Grin cree sus propios archivos de datos en el dire
grin server config grin server config
``` ```
Lo que generará un archivo `grin-server.toml` en el directorio actual, preconfigurado para usar el directorio actual para todos sus datos. Ejecutando Grin desde un directorio que contiene el archivo `grin-server.toml` usará los valores de ese archivo en lugar de los valores por defecto de `~/.grin/grin-server.toml`. Lo que generará un archivo `grin-server.toml` en el directorio actual, preconfigurado para usar el directorio actual para todos sus datos. Ejecutando Grin desde un directorio que contiene el archivo `grin-server.toml` usará los valores de ese archivo en lugar de los valores por defecto de `~/.grin/main/grin-server.toml`.
Durante las pruebas, ponga el binario de Grin en su ruta de esta manera: Durante las pruebas, ponga el binario de Grin en su ruta de esta manera:
```sh ```sh
export PATH=/path/to/grin/dir/target/debug:$PATH export PATH=/path/to/grin/dir/target/release:$PATH
``` ```
Donde `path/to/grin/dir` es su ruta absoluta al directorio raíz de la instalación de Grin. Donde `path/to/grin/dir` es su ruta absoluta al directorio raíz de la instalación de Grin.