mirror of
https://github.com/YunoHost-Apps/dex_ynh.git
synced 2024-09-03 18:26:22 +02:00
Merge pull request #1 from Limezy/update-doc
Update doc and correct GOPATH error
This commit is contained in:
commit
4d53fba00f
3 changed files with 14 additions and 19 deletions
|
@ -1,9 +1,7 @@
|
||||||
Some long and extensive description of what the app is and does, lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
Dex is an identity service that uses OpenID Connect to drive authentication for other apps.
|
||||||
|
This Yunohost package will install Dex and setup a canonical OpenID Connect provider for your Yunohost instance, based on the LDAP user base, that can then be used as an authentification server for other Yunohost apps.
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
||||||
- Ut enim ad minim veniam, quis nostrud exercitation ullamco ;
|
- Fully working OpenID Connect authentification flow
|
||||||
- Laboris nisi ut aliquip ex ea commodo consequat ;
|
- Interfaced with Yunohost's LDAP server
|
||||||
- Duis aute irure dolor in reprehenderit in voluptate ;
|
|
||||||
- Velit esse cillum dolore eu fugiat nulla pariatur ;
|
|
||||||
- Excepteur sint occaecat cupidatat non proident, sunt in culpa."
|
|
||||||
|
|
|
@ -1,12 +1,8 @@
|
||||||
* Any known limitations, constrains or stuff not working, such as (but not limited to):
|
* Known limitations :
|
||||||
* requiring a full dedicated domain ?
|
* Only tested on x86 architectures
|
||||||
* architectures not supported ?
|
* Dex only allows you to setup one OpenID Connect app at a time
|
||||||
* not-working single-sign on or LDAP integration ?
|
* However, it's a working multi-instance app, so you can install it more than once
|
||||||
* the app requires an important amount of RAM / disk / .. to install or to work properly
|
* Dex is only an OIDC provider, and user management will depend on the app using it as an OIDC provider
|
||||||
* etc...
|
|
||||||
|
|
||||||
* Other infos that people should be aware of, such as:
|
* To be used carefully :
|
||||||
* any specific step to perform after installing (such as manually finishing the install, specific admin credentials, ...)
|
* Changing URL will work but will require some settings change in the app using Dex as an OIDC provider
|
||||||
* how to configure / administrate the application if it ain't obvious
|
|
||||||
* upgrade process / specificities / things to be aware of ?
|
|
||||||
* security considerations ?
|
|
||||||
|
|
|
@ -115,9 +115,10 @@ ynh_script_progression --message="Building the sources (it will take some time).
|
||||||
ynh_exec_warn_less ynh_install_go --go_version=$GO_VERSION
|
ynh_exec_warn_less ynh_install_go --go_version=$GO_VERSION
|
||||||
|
|
||||||
pushd "$final_path"
|
pushd "$final_path"
|
||||||
# Build the sources
|
# Setup go exe and environnement
|
||||||
ynh_use_go
|
ynh_use_go
|
||||||
unset GOPATH
|
"$ynh_go" env
|
||||||
|
# Build server from source
|
||||||
make build
|
make build
|
||||||
# Setup a nice Yunohost logo
|
# Setup a nice Yunohost logo
|
||||||
cp /usr/share/yunohost/admin/img/logo.08bab97e.png web/themes/light/logo.png
|
cp /usr/share/yunohost/admin/img/logo.08bab97e.png web/themes/light/logo.png
|
||||||
|
|
Loading…
Add table
Reference in a new issue