1.4.0 • Published 11 months ago

authentication-flows-js-elasticsearch v1.4.0

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

authentication-flows-js-elasticsearch

npm Package

This project is a ElasticSearch implementation for AuthenticationAccountRepository of authentication-flows-js.

environment variables

ELASTIC_SEARCH_URL
ELASTIC_AUTH: username:password

preparations

download elasticsearch docker:

docker pull docker.elastic.co/elasticsearch/elasticsearch:7.9.0

run elastic docker (version 7.1.0):

docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.1.0

create mapping for AFM:

PUT
http://localhost:9200/authentication-account-22042021
{
    "mappings": {
        "dynamic": "false",
        "properties": {
            "username": {
                "type": "keyword"
            },
            "passwordLastChangeDate": {
                "type": "date"
            }
            "token": {
                "type": "keyword"
            }
            "tokenDate": {
                "type": "date"
            }
        }
    }    
}    

set environment variable:

set ELASTIC_SEARCH_URL=https://localhost:9200
1.4.0

11 months ago

1.2.0

11 months ago

1.3.5

11 months ago

1.3.4

11 months ago

1.3.3

11 months ago

1.3.2

11 months ago

1.3.3-snapshot01

11 months ago

1.3.1

11 months ago

1.3.0

11 months ago

1.1.0

1 year ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago