{"id":26777886,"url":"https://github.com/tharun977/spot-main","last_synced_at":"2025-03-29T05:18:29.915Z","repository":{"id":276482790,"uuid":"929396208","full_name":"tharun977/spot-main","owner":"tharun977","description":"A Django-based smart parking management system that enables efficient parking space tracking, automated payment processing, and a modern UI.","archived":false,"fork":false,"pushed_at":"2025-03-28T07:55:04.000Z","size":98246,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T08:33:40.847Z","etag":null,"topics":["bootstrap5","django","django-application","project","sqlite3"],"latest_commit_sha":null,"homepage":"","language":"Python","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/tharun977.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":"2025-02-08T13:02:40.000Z","updated_at":"2025-03-28T07:55:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"b30ea206-ac0e-4c22-b742-c723324e886e","html_url":"https://github.com/tharun977/spot-main","commit_stats":null,"previous_names":["tharun977/spot-main"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tharun977%2Fspot-main","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tharun977%2Fspot-main/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tharun977%2Fspot-main/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tharun977%2Fspot-main/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tharun977","download_url":"https://codeload.github.com/tharun977/spot-main/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246140587,"owners_count":20729802,"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","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":["bootstrap5","django","django-application","project","sqlite3"],"created_at":"2025-03-29T05:18:29.335Z","updated_at":"2025-03-29T05:18:29.884Z","avatar_url":"https://github.com/tharun977.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# 🚗 SPOT - Smart Parking Organization Tool  \n\nSPOT is a **Django-based web application** designed to streamline parking management efficiently. The system enables users to register parking details, track vehicle entries and exits, calculate parking duration, process payments, and manage parking lot operations—all with a **modern, responsive UI**.  \n\n## 📌 Features  \n✅ **Add Parking Records** – Register vehicle details and assign parking spots.  \n✅ **Track Vehicle Entries \u0026 Exits** – Log entry and exit times.  \n✅ **Calculate Parking Duration** – Automatically compute time parked.  \n✅ **Payment System** – Update and track parking payments.  \n✅ **Glassmorphism UI** – A sleek, modern, and responsive design.  \n✅ **Admin Authorization** – Track who authorized the parking entry.  \n\n## 🏗️ Tech Stack  \n🔹 **Backend:** Django (Python)  \n🔹 **Frontend:** HTML, CSS (Glassmorphism UI)  \n🔹 **Database:** SQLite / PostgreSQL  \n🔹 **Templating:** Django Templates  \n\n## 🚀 Getting Started  \n\n### 1️⃣ Clone the Repository  \n```sh\ngit clone https://github.com/tharun977spot-main.git\ncd spot-main\n```\n\n### 2️⃣ Set Up a Virtual Environment  \n```sh\npython -m venv venv\nsource venv/bin/activate  # On Windows use: venv\\Scripts\\activate\n```\n\n### 3️⃣ Install Dependencies  \n```sh\npip install -r requirements.txt\n```\n\n### 4️⃣ Apply Migrations  \n```sh\npython manage.py migrate\n```\n\n### 5️⃣ Run the Server  \n```sh\npython manage.py runserver\n```\nNow, open **http://127.0.0.1:8000/** in your browser! 🚀  \n\n## 📂 Project Structure  \n```\nSPOT/\n│── parking/              # Parking app (Django app)\n│   ├── templates/        # HTML Templates\n│   ├── static/           # CSS \u0026 JS Files\n│   ├── views.py          # Views (Business logic)\n│   ├── models.py         # Database models\n│   ├── urls.py           # URL routing\n│── spot/                 # Main Django project settings\n│── db.sqlite3            # Database file (for development)\n│── manage.py             # Django project management script\n│── requirements.txt      # Dependencies\n│── README.md             # Project documentation\n```\n\n## 🛠️ Environment Variables  \nMake sure to create a **`.env`** file in the root directory and set the required environment variables. Example:  \n```ini\nSECRET_KEY=your_secret_key\nDEBUG=True\nDATABASE_URL=sqlite:///db.sqlite3\n```\n\n## 📸 UI Preview  \n\u003cimg src=\"screenshot.png\" alt=\"SPOT Dashboard\" width=\"600\"\u003e  \n\n## 💡 Future Enhancements  \n🔹 **QR Code Integration** for quick check-ins  \n🔹 **Role-Based Access Control** for admins and staff  \n🔹 **Automated Payment System** with online transactions  \n\n## 🤝 Contributing  \n1. **Fork the repository**  \n2. **Create a new branch:** `git checkout -b feature-branch`  \n3. **Commit your changes:** `git commit -m \"Add new feature\"`  \n4. **Push to the branch:** `git push origin feature-branch`  \n5. **Submit a pull request** 🚀  \n\n## 📜 License  \nThis project is **open-source** and available under the **MIT License**.  \n\n---\n\n👨‍💻 Developed by **Tharun Raman \u0026 Rohan Ravindran**  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftharun977%2Fspot-main","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftharun977%2Fspot-main","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftharun977%2Fspot-main/lists"}