AtlasOfLivingAustralia / userdetails

Atlas user management - includes "my profile", user data and admin functions
Other
0 stars 17 forks source link
ala-product-auth ala-systems authorisation roles user-management

userdetails Build Status

userdetails

Note

v2.0 of userdetails requires ALA CAS 5

About

The Atlas user management app (userdetails) manages profile information for users.

This application is the central repository for user information for Atlas systems requiring authentication.

Userdetails works hand in hand with ALA CAS 5 and both share the same underlying database.

CAS manages the local authentication as well as third party auth provider integrtion.

General Information

Technologies

Setup

* Add the external config files for userdetails.
* You will need MySQL running in your local environment
* You will need to run the flyway migrations from [ALA CAS 5](https://github.com/AtlasOfLivingAustralia/ala-cas-5) to setup the initial database.

### Mail Server
* You will get unexpected errors if you are not running a local mail server. The config.groovy is set up to point at a mail server on port 1025. This is a good option https://nilhcem.github.io/FakeSMTP/download.html.

* The app is expected to run in the default port 8080 locally.

### High Availability

The `userdetails` app includes Spring Session support for storing session state in a Redis cluster.  To enable, set the
following config properties:

```yaml
spring:
  session:
    store-type: redis
  redis:
    host: cluster-host-name
    password: cluster-password
    port: 6379