mirror of
https://github.com/YunoHost-Apps/thelounge_ynh.git
synced 2024-09-03 20:35:54 +02:00
Fix
This commit is contained in:
parent
8b4873cd4a
commit
fb45999caf
2 changed files with 3 additions and 2 deletions
|
@ -26,7 +26,7 @@ module.exports = {
|
||||||
// For UNIX domain sockets, use `"unix:/absolute/path/to/file.sock"`.
|
// For UNIX domain sockets, use `"unix:/absolute/path/to/file.sock"`.
|
||||||
//
|
//
|
||||||
// This value is set to `undefined` by default to listen on all interfaces.
|
// This value is set to `undefined` by default to listen on all interfaces.
|
||||||
host: undefined,
|
host: "127.0.0.1",
|
||||||
|
|
||||||
// ### `port`
|
// ### `port`
|
||||||
//
|
//
|
||||||
|
@ -395,7 +395,7 @@ module.exports = {
|
||||||
|
|
||||||
// - `url`: A url of the form `ldaps://<ip>:<port>`.
|
// - `url`: A url of the form `ldaps://<ip>:<port>`.
|
||||||
// For plain connections, use the `ldap` scheme.
|
// For plain connections, use the `ldap` scheme.
|
||||||
url: "ldap://127.0.0.1",
|
url: "ldap://127.0.0.1:389",
|
||||||
|
|
||||||
// - `primaryKey`: LDAP primary key. It is set to `"uid"` by default.
|
// - `primaryKey`: LDAP primary key. It is set to `"uid"` by default.
|
||||||
primaryKey: "uid",
|
primaryKey: "uid",
|
||||||
|
|
|
@ -134,6 +134,7 @@ pushd $final_path
|
||||||
ynh_use_nodejs
|
ynh_use_nodejs
|
||||||
ynh_exec_warn_less yarn install
|
ynh_exec_warn_less yarn install
|
||||||
ynh_exec_warn_less NODE_ENV=production yarn build
|
ynh_exec_warn_less NODE_ENV=production yarn build
|
||||||
|
ynh_exec_warn_less yarn link
|
||||||
popd
|
popd
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Add table
Reference in a new issue