Giter Club home page Giter Club logo

django-screener's Introduction

Screener

Screener is a simple Django REST app to manage phone screening. For each screen, users add questions and candidates.

Requires

Django REST framework

PyPI download

pip install django-screener

Important Info

Requires a valid token to access the API. Your site must provide its own login functionality. You can use the django-rest-auth package to handle token authentication for you. https://django-rest-auth.readthedocs.io/en/latest/installation.html

If you want to browse the API in the browser, a valid session will be required. You can uncomment the default session login provided by the Django Rest Framework in the project root urls.py for this if you do not have session login functionality. Documentation for this can be found below. http://www.django-rest-framework.org/tutorial/4-authentication-and-permissions/#adding-login-to-the-browsable-api

This is just an API. Grab the client side code from this repo https://github.com/richardleahy/ng-screener

Quick start

  1. Add "screener and the Django REST framework" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'rest_framework',
        'screener.apps.ScreenerConfig',
    ]
    
  2. Include the screener URLconf in your project urls.py like this:

    url(r'^screener/', include('screener.urls')),
    
  3. Run python manage.py migrate to create the screener models.

  4. Start the development server (python manage.py runserver)

  5. Grab the GUI from this repo https://github.com/richardleahy/ng-screener

  1. Visit http://127.0.0.1:8000/screener/ to view the API. Need to add url(r'^api-auth/', include('rest_framework.urls')), to your root urls.py to be able to login if you do not already have login functionality.
  2. Add some questions.
  3. Add some screens.
  4. Create candidates and add them to screens
  5. Start phone screening!

django-screener's People

Contributors

richardleahy avatar baby2body-jira avatar

Stargazers

Nikolaus Schlemm avatar Agustin Cignetti 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.