Git Product home page Git Product logo

chi's Introduction

FedEx Operations Metrics

GitHub

Software/Templates

  • Back-End:

    • Python based Django Application
    • Data stored in SQL Database
  • Front-End:

    • Implemented with Bootstrap
    • Located in operations/opMetrics/static/
    • Main Files:
      • bootstrap.css
      • bootstrap.js
  • Development:

    • All development was done in VS Code

File Layout

  • operations/
    • manage.py
    • fedex/
      • pychace
      • asgi.py
      • init.py
      • settings.py
      • urls.py
      • wsgi.py
    • opMetrics/
      • admin.py
      • apps.py
      • forms.py
      • models.py
      • tests.py
      • urls.py
      • init.py
      • views.py
      • migrations/

Details1

  • operations/ # Website folder

    • manage.py # Script to run Django tools for this project (created using django-admin)

    • operations/ # Website/project folder (created using django-admin)

    • opMetrics/ # Application folder (created using manage.py)

      • init.py # Empty file that instructs Python to treat this directory as a Python package.

      • settings.py # Contains all the website settings, including registering any applications we create, the location of our static files, database configuration details, etc.

      • urls.py # Defines the site URL-to-view mappings. While this could contain all the URL mapping code, it is more common to delegate some of the mappings to particular applications, as you'll see later.

      • wsgi.py # Used to help your Django application communicate with the webserver. You can treat this as boilerplate.

      • asgi.py # Standard for Python asynchronous web apps and servers to communicate with each other.
        ASGI is the asynchronous successor to WSGI and provides a standard for both asynchronous and synchronous Python apps (whereas WSGI provided a standard for synchronous apps only). It is backward-compatible with WSGI and supports multiple servers and application frameworks.

Implemented Apps

  • operationsMetrics (home)
  • packagesPerHour
  • DEX
  • volumeAvailabilityStatus

Company Layout

Division
 Region
  District
   location
    Senior Manager
    Type
    State

Footnotes

  1. Detail information from MDN Web Docs (Mozilla Developer Network).
    Link: https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django

chi's People

Contributors

jra457 avatar mtswip avatar

Watchers

 avatar

chi's Issues

Adding link for packagesPerHour to the home page

It says that the template file packagesperhour.html is missing even though the file exists, so I am assuming that it is searching for a different file name than "packagesperhour.html" somewhere in the code and I cannot locate that line of code making the call.

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.