Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mugunthanraju/bug-analyzer
https://github.com/mugunthanraju/bug-analyzer
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mugunthanraju/bug-analyzer
- Owner: Mugunthanraju
- Created: 2022-02-21T09:39:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-02-21T09:39:49.000Z (over 2 years ago)
- Last Synced: 2023-12-26T13:34:25.867Z (11 months ago)
- Language: Python
- Size: 131 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bug Analysis Web App
### Required Python Libraries to use this repository :
1. OS
2. CSV
3. Pandas
4. SQLite3
5. Flask### Steps to use this repository :
1. Store all the input CSV files in Input directory
2. Install all required python libraries which is listed above.
3. If report database is not generated then Run the report.py using the command: `python report.py` .
4. Run the app.py using the command: `python app.py` , now local server as been started.
5. Then open the browser and search `http://127.0.0.1:5000/` which shows the Category table output in display and if you want to see the Sub-Category then go to `http://127.0.0.1:5000/sub` .
6. To close the local server press `Ctrl+C` in terminal.
##### Create a new repository
- git clone https://gitlab.com/mugunthanraju/bug-analysis-web-app.git
- cd bug-analysis-web-app
- git switch -c main
- touch README.md
- git add README.md
- git commit -m "add README"
- git push -u origin main
##### Push an existing folder
- cd existing_folder
- git init --initial-branch=main
- git remote add origin https://gitlab.com/mugunthanraju/bug-analysis-web-app.git
- git add .
- git commit -m "Initial commit"
- git push -u origin main
##### Push an existing Git repository
- cd existing_repo
- git remote rename origin old-origin
- git remote add origin https://gitlab.com/mugunthanraju/bug-analysis-web-app.git
- git push -u origin --all
- git push -u origin --tags