daymon-nes-ps-usermanagement

0.0.1 • Public • Published

User Management

Simple web site for tracking and user management purpose.

Description

The NES platform has several applications that manage events. Within each application, multiple tenants can manage their own data. As a platform, user permissions must be managed to each application for each tenant.

Getting Started

Dependencies

NodeJS >= 12.14.1 NestJS >= 6.11.8 Database PostgreSQL (stable release)

Installing

  • Clone this repo to your local machine using https://adv-dev@dev.azure.com/adv-dev/New%20Event%20System/_git/daymon-nes-ps-usermanagement

now install npm packages

$ npm install
  • open project in your editor in the root of project create .env file and ormconfig.json
  • than open src/secrets/exapmple.env and copy all code of exapmple.env to .env
  • than open in the root example.ormconfig.json and copy all code of example.ormconfig.json to ormconfig.json

Prepare local database

  • to run migration script(migration script will create al tables, types and relations)
npm run typeorm:migration:run
  • to run seed script(seed script will populate all tables, with fake data)
npm run typeorm:seed
  • to run server(start the server)
npm run start

Graphql playground(for develop mode)

Useful during testing and development but should be disabled in production by default

  • to run Graphql playground set in .env file

GRAPHQL_DEBUG=true GRAPHQL_PLAYGROUND=true

  • go to http://localhost:3000/usermanagement/api/v1/graphql in your browser
  • go to http://localhost:3211/usermanagement/api/v1/graphql in your browser
# Example GraphQL endpoint call
# Get application by id and all related features

query {
  getApplicationById(applicationId: 6, relations:[features])
  {
    name
    features {
      name
      featureId
    }
  }	
}

Readme

Keywords

none

Package Sidebar

Install

npm i daymon-nes-ps-usermanagement

Weekly Downloads

2

Version

0.0.1

License

MIT

Unpacked Size

6.45 MB

Total Files

1298

Last publish

Collaborators

  • advantagesolutions