{"id":25860954,"url":"https://github.com/subhamsarangi/application_system","last_synced_at":"2026-04-10T01:51:57.841Z","repository":{"id":275584370,"uuid":"926528336","full_name":"subhamsarangi/application_system","owner":"subhamsarangi","description":"Form Submission and Approval","archived":false,"fork":false,"pushed_at":"2025-02-03T12:31:06.000Z","size":2271,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-08T23:32:46.478Z","etag":null,"topics":["flask","flask-login","flask-wtf","pdfkit","postgresql","python","wkhtmltopdf"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/subhamsarangi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-02-03T12:20:10.000Z","updated_at":"2025-02-19T08:56:03.000Z","dependencies_parsed_at":"2025-02-03T13:33:40.391Z","dependency_job_id":"2e03e22f-ad43-4ac7-bac0-28b4f24b07cb","html_url":"https://github.com/subhamsarangi/application_system","commit_stats":null,"previous_names":["subhamsarangi/application_system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/subhamsarangi/application_system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhamsarangi%2Fapplication_system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhamsarangi%2Fapplication_system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhamsarangi%2Fapplication_system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhamsarangi%2Fapplication_system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/subhamsarangi","download_url":"https://codeload.github.com/subhamsarangi/application_system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhamsarangi%2Fapplication_system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286079811,"owners_count":27282121,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-27T02:00:05.795Z","response_time":58,"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":["flask","flask-login","flask-wtf","pdfkit","postgresql","python","wkhtmltopdf"],"created_at":"2025-03-01T23:03:31.481Z","updated_at":"2025-11-27T03:01:33.766Z","avatar_url":"https://github.com/subhamsarangi.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Student Application System\n\n## Project Overview\nThe Student Application System is a web-based application built with Flask that allows students to submit applications and enables administrators to review and approve them. The system supports user authentication and role-based access control.\n\n## Installation Instructions\n\n### Prerequisites\n- Python 3.8+\n- pip (Python package manager)\n- Virtual environment (optional but recommended)\n- PostgreSQL database\n\n### Setup\n1. Clone the repository:\n   \n```sh\n   git clone https://github.com/subhamsarangi/application_system.git\n   cd application_system\n```\n\n2. Create and activate a virtual environment:\n   \n```sh\n   python -m venv venv\n   source venv/bin/activate  # On Windows: venv\\Scripts\\activate\n```\n\n3. Install dependencies:\n   \n```sh\n   pip install -r requirements.txt\n```\n\n4. Configure environment variables:\n   - Create a .env file and set the following variables:\n     \n```env\nSQLALCHEMY_DATABASE_URI=postgresql://username:password@localhost/db_name\nSECRET_KEY=your_secret_key\n```\n\n5. Testing:\n    To run tests, use the following command:\n    \n```sh\n    pytest\n```\n\n6. Initialize and apply database migrations:\n   \n```sh\n    flask db init\n    flask db migrate -m \"Initial migration.\"\n    flask db upgrade\n```\n\n7. Run create_admin.py:\n    \n```sh\n    python create_admin.py\n```\n\n8. Run the application:\n   \n```sh\n   flask run\n```\n\n9. Access the application at http://127.0.0.1:5000/.\n\n## Usage Instructions\n\n### Student\n- Register and log in.\n- Fill out and submit an application.\n- View application status.\n\n### Admin\n- Log in as an admin.\n- View submitted applications.\n- Approve or reject applications.\n- Manage user accounts.\n\n## Technology Stack\n- Flask (Python Web Framework)\n- SQLAlchemy (ORM)\n- PostgreSQL (Database)\n- Flask-WTF (Forms Handling)\n- Flask-Login (Authentication)\n- Flask-Migrate (Database Migrations)\n- PDFkit using wkhtmltopdf (PDF Generation)\n\n## Assumptions\n- Admins are manually added to the database using create_admin.py\n- Applications follow a predefined format.\n- Users can submit only one application at a time.\n- wkhtmltopdf.exe is installed in the system in the default location such as C:\\Program Files\\wkhtmltopdf\\bin\\\n\n## Screenshots\nBelow are some screenshots of the application:\n\n![Screen 1](screenshots/screen%20(1).png)\n![Screen 2](screenshots/screen%20(2).png)\n![Screen 3](screenshots/screen%20(3).png)\n![Screen 4](screenshots/screen%20(4).png)\n![Screen 5](screenshots/screen%20(5).png)\n![Screen 6](screenshots/screen%20(6).png)\n![Screen 7](screenshots/screen%20(7).png)\n![Screen 8](screenshots/screen%20(8).png)\n![Screen 9](screenshots/screen%20(9).png)\n![Screen 10](screenshots/screen%20(10).png)\n![Screen 11](screenshots/screen%20(11).png)\n![Screen 12](screenshots/screen%20(12).png)\n![Screen 13](screenshots/screen%20(13).png)\n![Screen 14](screenshots/screen%20(14).png)\n![Screen 15](screenshots/screen%20(15).png)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhamsarangi%2Fapplication_system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsubhamsarangi%2Fapplication_system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhamsarangi%2Fapplication_system/lists"}