update docs
This commit is contained in:
parent
b6380be05b
commit
f92cc4fd63
2 changed files with 2 additions and 1 deletions
|
|
@ -28,6 +28,7 @@ services:
|
||||||
- "3000:3000"
|
- "3000:3000"
|
||||||
environment: # Defaults are listed below
|
environment: # Defaults are listed below
|
||||||
- ACCOUNT_REGISTRATION=false # true or false
|
- ACCOUNT_REGISTRATION=false # true or false
|
||||||
|
- JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken
|
||||||
volumes:
|
volumes:
|
||||||
- /path/you/want:/app/data
|
- /path/you/want:/app/data
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -673,7 +673,7 @@ export async function convert(
|
||||||
command += ` -f "${convertTo}"`;
|
command += ` -f "${convertTo}"`;
|
||||||
}
|
}
|
||||||
|
|
||||||
command += " ${targetPath}";
|
command += ` ${targetPath}`;
|
||||||
|
|
||||||
return exec(command, (error, stdout, stderr) => {
|
return exec(command, (error, stdout, stderr) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue