{"id":28341174,"url":"https://github.com/moiz-codebyte/gymvault","last_synced_at":"2026-02-09T20:35:27.021Z","repository":{"id":295303429,"uuid":"977286212","full_name":"Moiz-CodeByte/GymVault","owner":"Moiz-CodeByte","description":"A django app to manage all gym operation for gym owner and their membership holder.","archived":false,"fork":false,"pushed_at":"2025-12-04T02:27:18.000Z","size":712,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main-clean","last_synced_at":"2025-12-07T08:39:38.203Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://gymvault-e07ec57fc7c5.herokuapp.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/Moiz-CodeByte.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-03T21:04:44.000Z","updated_at":"2025-12-04T02:27:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"00aca0bd-e979-4bac-8466-bb48e816529e","html_url":"https://github.com/Moiz-CodeByte/GymVault","commit_stats":null,"previous_names":["moiz-codebyte/gymvault"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Moiz-CodeByte/GymVault","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Moiz-CodeByte%2FGymVault","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Moiz-CodeByte%2FGymVault/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Moiz-CodeByte%2FGymVault/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Moiz-CodeByte%2FGymVault/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Moiz-CodeByte","download_url":"https://codeload.github.com/Moiz-CodeByte/GymVault/tar.gz/refs/heads/main-clean","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Moiz-CodeByte%2FGymVault/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29280244,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T19:05:41.198Z","status":"ssl_error","status_checked_at":"2026-02-09T19:05:37.449Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2025-05-27T03:57:14.867Z","updated_at":"2026-02-09T20:35:27.007Z","avatar_url":"https://github.com/Moiz-CodeByte.png","language":"HTML","readme":"# GymVault - Gym Management System\n\n## Overview\n\nGymVault is a gym management system built with Django. It provides a platform for gym owners and administrators to manage memberships, payments, lockers, and member information efficiently. The system also allows members to register, select gym plans, and track their membership status.\n\n## Features\n\n- **User Management**\n  - Multiple user roles: Super Admin, Gym Admin, and Member\n  - User registration and authentication\n  - Profile management\n\n- **Gym Management**\n  - Multiple gym locations support\n  - Membership plan management\n  - Locker assignment and tracking\n\n- **Membership Management**\n  - Membership registration and renewal\n  - Membership status tracking\n  - Payment tracking and management\n\n- **Request System**\n  - Contact form for inquiries\n  - Request status tracking\n\n## Technology Stack\n\n- **Backend**: Django 5.2.2\n- **Database**: SQLite (default)\n- **Authentication**: Django Allauth (with Google OAuth support)\n- **Frontend**: HTML, CSS (Tailwind CSS)\n\n## Installation\n\n### Prerequisites\n\n- Python 3.8 or higher\n- Git\n\n### Clone the Repository\n\n```bash\ngit clone https://github.com/Moiz-CodeByte/GymVault.git\ncd GymVault\n```\n\n### Set Up Virtual Environment\n\n```bash\n# Create a virtual environment\npython -m venv .venv\n\n# Activate the virtual environment\n# On Windows\n.venv\\Scripts\\activate\n\n# On macOS/Linux\nsource .venv/bin/activate\n```\n\n### Install Dependencies\n\n```bash\npip install -r requirements.txt\n```\n\n### Database Setup\n\n```bash\n# Apply migrations\npython manage.py migrate\n\n# Create a superuser (admin)\npython manage.py createsuperuser\n```\n\n### Run the Development Server\n\n```bash\npython manage.py runserver\n```\n\nThe application will be available at http://127.0.0.1:8000/\n\n## Usage\n\n### Admin Access\n\n1. Navigate to http://127.0.0.1:8000/admin/\n2. Log in with the superuser credentials created earlier\n3. From here, you can manage users, gyms, membership plans, and more\n\n### User Registration\n\n1. Navigate to http://127.0.0.1:8000/register/\n2. Fill in the registration form\n3. Select a gym and membership plan\n4. Complete the registration process\n\n### Member Dashboard\n\n1. Log in with member credentials\n2. View membership status, payments, and locker assignment\n3. Update profile information\n\n### Gym Admin Dashboard\n\n1. Log in with gym admin credentials\n2. Manage members, lockers, and payments for the assigned gym\n3. Create and update membership plans\n\n## Project Structure\n\n- `gymvault/` - Main application directory\n  - `models.py` - Database models\n  - `views.py` - View functions\n  - `urls.py` - URL routing\n  - `forms.py` - Form definitions\n  - `templates/` - HTML templates\n  - `static/` - Static files (CSS, JS, images)\n\n- `gymvaultproject/` - Project configuration\n  - `settings.py` - Django settings\n  - `urls.py` - Main URL routing\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n---\nFor any questions or support, please contact at [hello@abdulmoiz.net](mailto:hello@abdulmoiz.net).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoiz-codebyte%2Fgymvault","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoiz-codebyte%2Fgymvault","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoiz-codebyte%2Fgymvault/lists"}