Skip to content

Latest commit

 

History

History
59 lines (37 loc) · 1.82 KB

README.md

File metadata and controls

59 lines (37 loc) · 1.82 KB

NSUT-Feedback-Flask-Application

This is a Flask Application for students of NSUT. They can add their feedback about NSUT facilities, techers, infrastructure and much more by using their university Roll numbers. The students can also see various links for respective webpages of NSUT like the NSUT IMS login page, NSUT notices and circular page, Nsut Home page, etc. They can also see a list of details of the the person to contact for any query. The email address and phone numbers with the respective authority are also provided in this application to help students. This is a basic application for feedback which I made during the 2nd semester as a mini-project.

GUIDE TO RUN THE FLASK APPLICATION:

PREREQUISITES:

  1. python 3.x installed
  2. pip python package installer

INSTALLATION:

  1. clone the repository

    git clone https://github.com/ANMOLSCRIPT/NSUT-Feedback-Flask-Application.git cd NSUT-Feedback-Flask-Application

  2. create a virtual environment

    python -m venv venv source venv/bin/activate

  3. install the required packages

    pip install flask
    

RUN THE APPLICATION:

  1. run the flask app python app.py

  2. open your web browser and visit the follow link example-- http://127.0.0.1:5000/

Contributions:

We welcome contributions from the open-source community to help improve this Flask Application. To contribute, please follow these guidelines:

  1. Fork the repository.

  2. Create a new branch for your feature or bug fix:

git checkout -b feature/your-feature-name

  1. Make your changes and ensure that the codebase remains clean and well-documented.

  2. Write appropriate unit tests for your changes.

  3. Commit your changes:

git commit -am 'Add some feature'

  1. Push to the branch:

git push origin feature/your-feature-name

  1. Create a new pull request, describing your changes and their purpose.