Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 813 Bytes

README.md

File metadata and controls

38 lines (31 loc) · 813 Bytes

An Inven!RA Implementation

For users

If you're only looking to start a complete Inven!RA platform, run:

$ docker compose -f docker-compose.yaml up -d

Ports:

  1. Frontend: http://localhost:8080
  2. Backend: http://localhost:3000
  3. Backend Swagger: http://localhost:3000/swagger
  4. Mongo Express: http://localhost:8090/db/invenira/
  5. MongoDB: mongodb://root:root@localhost:27017/
  6. Keycloak: http://localhost:8091

Login with the default user admin and password admin

For developers

Project setup

$ npm install

Start the required dev services:

$ docker compose -f docker-compose-dev.yaml up -d

Start Inven!RA Backend

$ npm run backend:dev

Start Inven!RA Frontend

$ npm run frontend:dev