GithubHelp home page GithubHelp logo

kudos's Introduction

Kudos

Hackbright final project

This is a webapp designed to use internally at your company. It provides a central place for employees to post recognition for other employee's work, whereas it might go unnoticed otherwise. You have a main feed where all posts are displayed. Clicking on either a team or specific person will show more specific information, as well as any posts they have been tagged in. A great way for new employees to see what everyone has been working on.

Overview

This is a Python webapp using a Flask framework. The data is stored in SQLite using SQLAlchemy as the ORM. The front end is done with JavaScript using jQuery, HTML, and custom CSS.

Views

Home page to view all posts. Optimized to turn mobile some day

Individual user pages to see contact information and all kudos sent to that user

Team pages to view everyone on each team. The bottom of the page will display kudos that team has been tagged in.

Setup on your machine

  1. Clone the repo locally

  2. Create virtual env

    $ pip install virtualenv
    $ virtualenv --python=python2.7 env
    $ source env/bin/activate
    
  3. install requirements from requirements.txt

    $ pip install -r requrements.txt
    
  4. Copy "settings_example.py" to "settings.py" and modify the values.

  5. Create database:

    $ python db_create.py
    
  6. Edit db to include your necessary info to login and view index.html. NOTE: must use your actual email

    $ sqlite3 data/app.db
    > insert into users default values;
    > update users set email="[email protected]", firstname="FIRSTNAME", lastname="LASTNAME", username="USERNAME"  where id = 1;
    
  7. Start the web server

    ./run.py
    

This is bare minimum to get site running. No avatars will be shown, you will be the only option for tagging, and there will be no user/team relationships. You can add more users/teams to the database manually for more options. The database schema can be found in models.py.

kudos's People

Contributors

daneden avatar mskeving avatar ryankaplan 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.