Giter VIP home page Giter VIP logo

device-registration-subsystem's Introduction

  • Project license has been updated to remove the requirement for acknowledgement

Image of DIRBS Logo

Device Registration Subsystem API

License

Copyright (c) 2018-2021 Qualcomm Technologies, Inc.

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • Neither the name of Qualcomm Technologies, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
  • The origin of this software must not be misrepresented; you must not claim that you wrote the original software.
  • Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
  • This notice may not be removed or altered from any source distribution.

NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Documentation

DRS-API-Installation-Guide-1.0.0

DRS-SPA-Installation-Guide-1.0.0.pdf

DRS-Importer-User-Guide-1.0.0.pdf

DRS-Exporter-User-Guide-1.0.0.pdf

DRS-Authority-User-Guide-1.0.0.pdf

Frontend Application Repo

https://github.com/dirbs/Device-Registration-Subsystem-Frontend

Directory structure

This repository contains code for DRS part of the DIRBS. It contains

  • app/ -- The DRS core server app, to be used as DRS Web Server including database models, apis and resources
  • etc/ -- Config files etc to be reside here
  • mock/ -- Sample data files etc which are used in app to be reside here
  • scripts/ -- Database migration, list generation scripts etc
  • tests/ -- Unit test scripts and Data

Starting Dev Environment

Make sure you have installed docker and docker-compose. To install dev environment without docker follow here.

  • Clone the repository

  • Create a drs user with UID 9001 and change the ownership of the repo:

    sudo useradd -u 9001 -m -d /home/drs -s /bin/bash drs
    sudo chown -R 9001:9001 Device-Registration-Subsystem
  • Now build Dev Server using:

    make -f docker/dev/Makefile
  • Build Postgres Server using:

    make -f docker/postgres/Makefile
  • After the build process for both images is successful launch dev environment using docker-compose:

    docker-compose -f docker/dev/devenv-with-local-db.yml run --rm --service-ports dev-shell

    It will launch container for development server and for postgres (drs_db) and login you to the shell of the development server.

  • Now open another terminal and login into the postgres shell:

    docker exec -it drs_db bash
  • Checkout into the postgres shell:

    gosu postgres psql
  • On the postgres shell, create a role drs with login:

    CREATE ROLE drs WITH login;
  • On the postgres shell, create database named drs:

    CREATE database drs OWNER drs;
  • Now switch to the server shell, and install database:

    make install-db

    After these steps are completed successfully, you can run test or start development server etc on the shell.


Bumping version number

We follow Semantic Versioning for DRS. To change the releases number simply edit app/metadata.py and bump the version number.


Other Helpful Commands

To clean the extra and un-necessary directories in the project:

make clean

To clean the python compiled files from the project:

make clean-pyc

To install a fresh database:

make install-db

To Upgrade already installed database:

make upgrade-db

To configure To create distribution files:

make dist

To generate full registration list for DIRBS Core:

make genlist-full

To generate delta registration list for DIRBS Core:

make genlist-delta

To run unit and regression tests:

make test

To run code linting:

make lint

To generate languages:

pybabel extract -F babel.cfg -k _l -o messages.pot .
pybabel init -i messages.pot -d app/translations -l language-code
pybabel compile -d app/translations

Install rabbitmq-server

$ sudo apt-get install rabbitmq-server

Start celery worker

$ celery -A app.celery worker --loglevel=info -B

device-registration-subsystem's People

Contributors

a-wakeel avatar munirkn avatar ramigiki avatar muazzama avatar ikramullahmohmand avatar yasirz avatar fhamatanga avatar sbuser-git avatar fozia-zafar avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.