{"id":30850437,"url":"https://github.com/cosmicc0der78/onlinebankingsystem","last_synced_at":"2026-05-19T14:36:43.260Z","repository":{"id":309040424,"uuid":"1003521371","full_name":"cosmicc0der78/OnlineBankingSystem","owner":"cosmicc0der78","description":"A Full-stack Django web application designed to simulate the core functionalities of a modern digital banking platform. It provides a secure, user-friendly interface for users to manage their financial accounts, perform transactions, apply for loans, and access customer support.","archived":false,"fork":false,"pushed_at":"2025-08-09T11:51:28.000Z","size":103,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-09T13:27:32.495Z","etag":null,"topics":["banking-applications","banking-system","django-framework"],"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/cosmicc0der78.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":"support/__init__.py","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-17T09:18:40.000Z","updated_at":"2025-08-09T11:51:31.000Z","dependencies_parsed_at":"2025-08-09T13:27:36.011Z","dependency_job_id":"03a9c798-ba61-4b09-9339-7baab66eae5a","html_url":"https://github.com/cosmicc0der78/OnlineBankingSystem","commit_stats":null,"previous_names":["cosmicc0der78/onlinebankingsystem"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/cosmicc0der78/OnlineBankingSystem","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmicc0der78%2FOnlineBankingSystem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmicc0der78%2FOnlineBankingSystem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmicc0der78%2FOnlineBankingSystem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmicc0der78%2FOnlineBankingSystem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cosmicc0der78","download_url":"https://codeload.github.com/cosmicc0der78/OnlineBankingSystem/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cosmicc0der78%2FOnlineBankingSystem/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274001213,"owners_count":25205211,"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-09-07T02:00:09.463Z","response_time":67,"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":["banking-applications","banking-system","django-framework"],"created_at":"2025-09-07T06:01:33.630Z","updated_at":"2026-05-19T14:36:43.230Z","avatar_url":"https://github.com/cosmicc0der78.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🏦 Online Banking System using Django\n\nA secure, user-friendly online banking platform developed with Django. It allows users to manage bank accounts, perform transactions, and view history — all through a responsive web interface.\n\n---\n\n## 🚀 Features\n\n- **User Authentication**  \n  Secure user registration, login, logout, and profile management.\n\n- **Account Management**  \n  View account balance, account details, and update profile information.\n\n- **Transactions**  \n  Deposit, withdraw, transfer funds, and view transaction history.\n\n- **Loan Management**  \n  Apply for loans, view loan status and history.\n\n- **Customer Support**  \n  Submit support tickets, view ticket status, and receive responses.\n\n- **Notifications**  \n  Receive and manage important alerts and notifications.\n\n---\n\n## 🛠 Tech Stack\n\n- **Framework:** Django (Python)\n- **Frontend:** HTML, CSS, Bootstrap\n- **Database:** SQLite (default), compatible with PostgreSQL/MySQL\n- **Tools:** Django Admin, Django ORM, Django Authentication System\n\n---\n\n## 📁 Project Structure\n## Project Structure\n\n```plaintext\nOnlineBankingSystem/\n├── accounts/              # User account and profile management\n│   └── templates/accounts/   # Base template\n│   └── static/ accounts/  # styles.css\n│       └──styles.css\n├── banking/               # Deposit and withdrawal apps\n│   └── templates/banking/\n├── loans/                 # Loan management\n│   └── templates/loans/\n├── support/               # Customer support and ticket system\n│   └── templates/support/\n├── transactions/          # Transactions: transfer, history\n│   └── templates/transactions/\n├── manage.py              # Django project management script\n├── db.sqlite3             # Default SQLite database\n├── requirements.txt       # Python dependencies\n└── README.md              # Project documentation\n```\n\n---\n\n## ⚙️ Installation \u0026 Setup\n\n### 1️⃣ Clone the Repository\n\n```bash\ngit clone https://github.com/cosmicc0der78/OnlineBankingSystem.git\ncd OnlineBankingSystem\n```\n\n### 2️⃣ Create and activate a virtual environment:\n\nOn macOS/Linux:\n\n```bash\npython3 -m venv env\nsource env/bin/activate\n```\n\nOn Windows:\n\n```bash\npython -m venv env\nenv\\Scripts\\activate\n```\n\n### 3️⃣ Install required packages:\n\n```bash\npip install -r requirements.txt\n```\n\n### 4️⃣ Apply database migrations:\n\n```bash\npython manage.py migrate\n```\n\n### 5️⃣ Run the development server:\n\n```bash\npython manage.py runserver\n```\n\n### 6️⃣ Access the app in your browser:\n\nVisit http://127.0.0.1:8000\n\n\n## ✍️ Author\n\n**Indu Sree.N**  [GitHub](https://github.com/cosmicc0der78)      [Email](mailto:indusreen78@gmail.com)\n\n\u003e 📢 I'm open to collaborations, feedback, and contributing to exciting open-source adventures.  \n\u003e If you have ideas, suggestions, or just want to connect—feel free to reach out!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosmicc0der78%2Fonlinebankingsystem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcosmicc0der78%2Fonlinebankingsystem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosmicc0der78%2Fonlinebankingsystem/lists"}