Coder Social home page Coder Social logo

assets-tracking's Introduction

Assets Tracking

OVERVIEW

In this Django app to track corporate assets such as phones, tablets, laptops and other gears handed out to employees.

GOALS

  1. The application might be used by several companies
  2. Each company might add all or some of its employees
  3. Each company and its staff might delegate one or more devices to employees for a certain period of time
  4. Each company should be able to see when a Device was checked out and returned
  5. Each device should have a log of what condition it was handed out and returned

Project Structure

.
└── assets-tracking/
    ├── config/                                     
    │   ├── __init__.py
    │   ├── asgi.py
    │   ├── settings.py                             # project settings
    │   ├── urls.py                                 # root URL
    │   └── wsgi.py
    ├── trackassets/                                # app name
    │   ├── api/                                    
    │   │   ├── permissions.py                      # custom permission
    │   │   ├── serializers.py                      # serializers 
    │   │   ├── urls.py                             # API ULS
    │   │   └── views.py                            # API views
    │   ├── __init__.py
    │   ├── admin.py
    │   ├── apps.py
    │   ├── models.py                               # Django Models class
    │   ├── views.py
    │   └── tests.py
    ├── db.sqlite3                                  # Database 
    ├── manage.py
    ├── requirements.txt                            # project dependency
    └── Asset Tracking.postman_collection.json      # API documentation

Installations Process for Windows

Install the virtual environment

assets-tracking> python -m venv env

Activate the virtual environment (env)

assets-tracking> env\Scripts\activate

Now, install the dependency inside the virtual environment

(env) assets-tracking> pip install -r requirements.txt

After complete the installation, now run the server

(env) assets-tracking> python manage.py runserver

API Documentation include

assets-tracking's People

Contributors

partho-debnath avatar

Watchers

 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.