{"id":24664054,"url":"https://github.com/sujalchoudhari/voltify","last_synced_at":"2026-05-01T02:33:14.350Z","repository":{"id":180878027,"uuid":"664569204","full_name":"SujalChoudhari/Voltify","owner":"SujalChoudhari","description":"A Electricity Billing App in Java","archived":false,"fork":false,"pushed_at":"2023-07-14T05:35:09.000Z","size":170,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-04T22:12:58.442Z","etag":null,"topics":["internship-task","java","mysql","mysql-database","swing-gui"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SujalChoudhari.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-10T09:12:12.000Z","updated_at":"2023-12-02T04:29:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"491f8a75-e969-4108-b7f5-3efac3ce8b80","html_url":"https://github.com/SujalChoudhari/Voltify","commit_stats":null,"previous_names":["sujalchoudhari/voltify"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SujalChoudhari/Voltify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SujalChoudhari%2FVoltify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SujalChoudhari%2FVoltify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SujalChoudhari%2FVoltify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SujalChoudhari%2FVoltify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SujalChoudhari","download_url":"https://codeload.github.com/SujalChoudhari/Voltify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SujalChoudhari%2FVoltify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32483406,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["internship-task","java","mysql","mysql-database","swing-gui"],"created_at":"2025-01-26T05:17:43.244Z","updated_at":"2026-05-01T02:33:14.345Z","avatar_url":"https://github.com/SujalChoudhari.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Voltify - Electricity Billing System\n\nVoltify is a Java-based electricity billing system that aims to automate the process of calculating electricity bills based on the units consumed. It provides a seamless and convenient solution for users and local electricity offices to efficiently manage billing and data sharing. With its robust features and emphasis on data accuracy and security, Voltify is a modern take on the classic electricity billing system.\n\n## Features\n\n- Accurate calculation of the bill amount based on the units consumed.\n- Instantaneous sharing of data between local electricity offices and users.\n- Ensured safety and prevention of tampering with data.\n\n## Installation\n\nTo run the Voltify electricity billing system locally, follow these steps:\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/SujalChoudhari/Voltify.git\n   ```\n\n2. Import the project into your preferred Java IDE (e.g., Eclipse).\n\n3. Configure the module dependencies:\n\n   - Right-click on the project in the IDE.\n   - Select \"Build Path\" -\u003e \"Configure Build Path\".\n   - In the \"Libraries\" tab, click on \"Classpath\" -\u003e \"Add JARs\".\n   - Navigate to the `/Voltify/lib/` directory and select `mysql-connector-j-8.0.33.jar`.\n   - Click \"Apply\" and \"OK\" to save the changes.\n\n4. Set up the database:\n\n   - Execute the SQL query in `/Voltify/src/database.sql` to create the database and tables required for the application.\n   - Update the connection details in the `Application` class to match your database configuration:\n\n     ```java\n     database = new Database(\"jdbc:mysql://localhost:3306/voltify\", System.getenv(\"user\"), System.getenv(\"pass\"));\n     ```\n\n5. Build and run the application using your IDE's built-in tools.\n\n## Usage\n\n1. Run the `Application` class (Make sure the database services are active).\n\n2. Use the provided login panel to authenticate as either a User or an Admin.\n\n3. Users can sign up, view/update their profile, estimate the cost based on the rate of 6.1 rs/unit, view past bills, and pay new bills by uploading the meter reading photo for verification.\n\n4. Admins can view bills, mark them as paid, and access user data.\n\n## Database Configuration\n\nVoltify utilizes a MySQL database for data storage. The connection details can be configured in the `Database` class. \nuse the environment variables to use your own connection (`user`,`pass`).  \nAlso update the url `jdbc:mysql://localhost:3306/voltify` if needed.\n\nMake sure you have MySQL installed and running on your local machine before running the Voltify application.\nOpen the `/Voltify/src/database.sql` and use its queries to create required tables and `admin`.\nDefault admin credentials are id=`0`,username=`admin`,password=`admin`.\n\n## Contributing\n\nContributions to Voltify are welcome and appreciated. To contribute, please follow these guidelines:\n\n1. Open an issue to discuss the proposed changes and obtain feedback before implementing them.\n\n2. Fork the repository and create a new branch for your feature or bug fix.\n\n3. Ensure that your code adheres to the project's coding conventions and style.\n\n4. Make sure to test your changes thoroughly.\n\n5. Submit a pull request, referencing the original issue and providing a brief description of your changes.\n\n## License\n\nVoltify is licensed under the [MIT License](LICENSE).\n\n## Screenshots\n\nAdd relevant screenshots of the Voltify application here.\n\n![Login Panel](./public/login.png)\n\n*Screenshot 1: Login Panel*\n\n![User Profile](./public/user-profile.png)\n\n*Screenshot 2: User Profile*\n\n![Bill Calculation](./public/bill-calculation.png)\n\n*Screenshot 3: Bill Calculation*\n\n![Admin Dashboard](./public/admin-dashboard.png)\n\n*Screenshot 4: Admin Dashboard*","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsujalchoudhari%2Fvoltify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsujalchoudhari%2Fvoltify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsujalchoudhari%2Fvoltify/lists"}