{"id":30791824,"url":"https://github.com/lovnishverma/studentresume","last_synced_at":"2026-02-10T21:32:35.197Z","repository":{"id":304523000,"uuid":"1019036417","full_name":"lovnishverma/studentresume","owner":"lovnishverma","description":"A modern, clean, and secure Resume Uploader built with Flask, Bootstrap 5, and SQLite. This app allows students to upload, manage, and delete their resumes securely via a password-protected admin panel.","archived":false,"fork":false,"pushed_at":"2025-07-13T17:02:47.000Z","size":4227,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-06T15:39:52.568Z","etag":null,"topics":["fileupload","resume-app"],"latest_commit_sha":null,"homepage":"https://studentresume.onrender.com/","language":"HTML","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/lovnishverma.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,"zenodo":null}},"created_at":"2025-07-13T15:46:11.000Z","updated_at":"2025-07-15T17:05:34.000Z","dependencies_parsed_at":"2025-07-13T17:52:16.639Z","dependency_job_id":null,"html_url":"https://github.com/lovnishverma/studentresume","commit_stats":null,"previous_names":["lovnishverma/studentresume"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lovnishverma/studentresume","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovnishverma%2Fstudentresume","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovnishverma%2Fstudentresume/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovnishverma%2Fstudentresume/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovnishverma%2Fstudentresume/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lovnishverma","download_url":"https://codeload.github.com/lovnishverma/studentresume/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lovnishverma%2Fstudentresume/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29317956,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T20:44:44.282Z","status":"ssl_error","status_checked_at":"2026-02-10T20:44:43.393Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["fileupload","resume-app"],"created_at":"2025-09-05T15:06:58.010Z","updated_at":"2026-02-10T21:32:35.168Z","avatar_url":"https://github.com/lovnishverma.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📄 Resume Uploader - Flask App\n\nA modern, clean, and secure **Resume Uploader** built with Flask, Bootstrap 5, and SQLite.\nThis app allows students to upload, manage, and delete their resumes securely via a password-protected admin panel.\n\n---\n\n## 🚀 Features\n\n✅ Upload PDF resumes with student names\n\n✅ View all uploaded resumes with size, name, and upload date\n\n✅ Secure download option for resumes\n\n✅ Admin-only secure delete with password from `.env`\n\n✅ Fully responsive modern UI (Bootstrap 5 + FontAwesome + Google Fonts)\n\n✅ Glassmorphism \u0026 Animated modern design\n\n✅ Flash messages for user feedback\n\n✅ Timezone: **Asia/Kolkata (IST)**\n\n---\n\n## 📂 Project Structure\n\n```\n├── app.py                # Main Flask Application\n├── templates/\n│   └── index.html        # Bootstrap + Modern Styled UI\n├── uploads/              # Directory for storing uploaded files\n├── files.db              # SQLite database for file metadata\n├── requirements.txt      # Python dependencies\n├── .env                  # Secret environment variables\n└── README.md             # Documentation (this file)\n```\n\n---\n\n## ⚙️ Setup Instructions\n\n### 1️⃣ Clone the Repository\n\n```bash\ngit clone https://github.com/YOUR_GITHUB_USERNAME/resume-uploader.git\ncd resume-uploader\n```\n\n### 2️⃣ Create `.env` File\n\n```\nDELETE_PASSWORD=your_secure_delete_password\n```\n\n---\n\n### 3️⃣ Install Dependencies\n\n```bash\npython -m venv venv\nsource venv/bin/activate      # On Windows: venv\\Scripts\\activate\npip install -r requirements.txt\n```\n\n### `requirements.txt`\n\n```\nFlask\npytz\npython-dotenv\n```\n\n---\n\n### 4️⃣ Run the Application\n\n```bash\npython app.py\n```\n\nNavigate to:\n[http://127.0.0.1:5000/](http://127.0.0.1:5000/)\n\n---\n\n## 🔑 Functionality Summary\n\n### 🖥️ Upload Section\n\n* Only `.pdf` allowed\n* Files stored under `uploads/`\n* Descriptions are typically student names.\n\n### 📊 Dashboard\n\n* View list of uploaded resumes with metadata.\n* Shows: **File Name**, **Size (bytes)**, **Upload Date (IST)**.\n\n### ⬇️ Download\n\n* Files available via **Download** button.\n\n### ❌ Secure Delete\n\n* Password stored in `.env` checked on delete request.\n* Deletes both database entry and file.\n\n---\n\n## 📌 Important Notes\n\n* Duplicate file names are blocked.\n* `.env` password keeps deletion secure.\n* Upload limit per file: **10MB max (enforced client-side JS)**.\n\n---\n\n## 🖼️ Screenshots\n\n\u003cimg width=\"1787\" height=\"951\" alt=\"image\" src=\"https://github.com/user-attachments/assets/d30a40f1-9b88-4ca0-87ab-f2e6757f5739\" /\u003e\n\n---\n\n\u003cimg width=\"1777\" height=\"967\" alt=\"image\" src=\"https://github.com/user-attachments/assets/76d819f0-c763-4100-99e3-f1b7e6867d32\" /\u003e\n\n---\n\n## 👨‍💻 Author\n\n**Lovnish Verma**\n🔗 [https://lovnishverma.github.io/](https://lovnishverma.github.io/)\n\n---\n\n## 📃 License\n\nFor educational and demonstration purposes only.\nNo commercial use without permission.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flovnishverma%2Fstudentresume","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flovnishverma%2Fstudentresume","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flovnishverma%2Fstudentresume/lists"}