Git Product home page Git Product logo

bhaavi-web's Introduction

Bhaavi Django App

Production Installation

nginx conf bhaavi.conf

  • Create bhaavi.conf inside /etc/nginx/sites-available with below contents:

`server { listen 80; server_name bhaavi.in;

location / {
    include proxy_params;
    proxy_pass http://unix:/home/ubuntu/bhaavi-web/app.sock;
}
location /static/ {
    autoindex on;
    alias /home/ubuntu/bhaavi-web/static/;
}

} `

  • ln bhaavi.conf /etc/nginx/sites-enabled
  • sudo systemctl nginx reload

bhaavi-web's People

Contributors

deepsource-autofix[bot] avatar deepsourcebot avatar dependabot[bot] avatar iamharshkumar avatar psnappz avatar sreehari626 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

bhaavi-web's Issues

Request system

User request system for mentor time schedules.

Steps

  • User purchases the product
  • User requests for time schedule
  • Admin enquires and updates the user with 3 available schedules
  • User accepts one schedule
  • Admin and mentor gets notified for the same
  • Scheduled button is displayed.
  • User can request for new schedule if required

Critical Bug fixes

Known bugs (Please update here)

  • Disable creating Multiple duplicate schedule requests
  • Payment checkout page error fix

Final touch

  • Admin page modifications
  • Mentor/User post call page
  • Model for call report(mentor report)

UAT issues (development branch)

Please fix the following issues

  • /support throwing 500 error
  • Fix 500 error template (it is showing 404 not found html template)
  • support app page is missing static files
  • Can assign astrologer for product 3 multiple times
  • Cannot view product 3 in astrologer dashboard after assigning
  • Enable force assigning of product 3 to astrologer once and add an option to update later
  • Check uploaded file format before processing the db query.
  • Able to see admin dashboard link while viewing the submitted report from astro board
  • Close the product purchases once the report is submitted for product 3
  • Error downloading the report file

Loop variable used outside the loop

Description

Do not use a loop variable (i.e. defined by a for loop or a list comprehension or a generator expression) outside the loop. It can induce wrong results.

accounts/views.py

 334            errors = []
 336            for error in form.errors.values():
 337                errors.append(error)
 338            messages.error(request,error)
 339    context = {'form':form,'type':'User'}
 340    return render(request, 'accounts/register.html', context)  

PICSET bug fixes and improvements

  • Histogram graph in result (omit displaying score)
  • Test attendee name
  • PICSET alignment (move up)
  • disable auto select next question

Equality comparison detected with singleton object

Description

Comparisons to the singleton objects, like True, False, and None, should be done with identity, not equality. Use “is” or “is not”. Identity checks are faster than equality checks. Bad: python value = fx() if value != None: print(value) Good: ```python value = fx() if value is not None: …

Occurrences

There are 3 occurrences of this issue in the repository.

See all occurrences on DeepSource → deepsource.io/gh/PSNAppz/bhaavi-web/issue/FLK-E711/occurrences/

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.