steedos-platform/packages/accounts
github-actions 7f68ad4a1a v2.1.37
2021-10-30 16:22:21 +00:00
..
src 简档中可配置用户登陆会话时间限制 2021-10-25 14:38:52 +08:00
.env
.gitignore
idp-private-key.pem
idp-public-cert.pem
package.json v2.1.37 2021-10-30 16:22:21 +00:00
package.service.js
plugin.config.yml
README.md package 加下 README.md #2344 2021-10-21 14:24:24 +08:00
server.ts
steedos-config.yml
steedos-server.ts
tsconfig.json
yarn.lock

Steedos Accounts

Fullstack authentication and accounts-management for steedos.

Connect to mongodb

export MONGO_URL=mongodb://127.0.0.1/steedos

process.ENV

export ROOT_URL=http://127.0.0.1:4000/

Start Server at 4000

yarn
yarn start

Server apis runs on https://127.0.0.1:4000/accounts/

Debug Webapp at 3000

cd webapp
yarn
yarn start

Navigate to https://127.0.0.1:3000/ to view react webapp.

Build Webapp to 4000

cd webapp
yarn
yarn build

Build webapp to /webapps/build folder, will mount to https://127.0.0.1:4000/accounts/a/

Navigate to https://127.0.0.1:4000/ , will redirect to build webapp at https://127.0.0.1:4000/accounts/a/

密码策略

默认密码格式要求为密码必须包含字符、数字和字母并至少有一个大写字母且不能少于8位 可通过steedos-config.ym配置文件进行重写

public:
  accounts:
    password:
      policy:
        reg: ^(?![A-Z]+$)(?![a-z]+$)(?!\d+$)\S{8,}$
        regErrorMessage: 密码必须包含字母和数字且不能少于8位

功能说明

  • 此包用于提供登录及注册页面的服务端接口