{"id":34660795,"url":"https://github.com/s13g/subasta","last_synced_at":"2026-04-11T17:08:59.483Z","repository":{"id":65095521,"uuid":"538623172","full_name":"S13G/Subasta","owner":"S13G","description":"Subasta is an auction ecommerce website similar to Ebay where users can list items and put them up for auction and whoever has the highest bid for that particular auctions wins the item","archived":false,"fork":false,"pushed_at":"2023-01-08T23:01:27.000Z","size":31119,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main2","last_synced_at":"2023-03-05T01:32:16.409Z","etag":null,"topics":["bootstrap","css","django","html","javascript","mariadb","postgresql","python"],"latest_commit_sha":null,"homepage":"","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/S13G.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}},"created_at":"2022-09-19T17:39:40.000Z","updated_at":"2023-03-04T18:07:50.000Z","dependencies_parsed_at":"2023-02-08T08:00:38.594Z","dependency_job_id":null,"html_url":"https://github.com/S13G/Subasta","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/S13G/Subasta","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/S13G%2FSubasta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/S13G%2FSubasta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/S13G%2FSubasta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/S13G%2FSubasta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/S13G","download_url":"https://codeload.github.com/S13G/Subasta/tar.gz/refs/heads/main2","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/S13G%2FSubasta/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31687974,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T13:07:20.380Z","status":"ssl_error","status_checked_at":"2026-04-11T13:06:47.903Z","response_time":54,"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":["bootstrap","css","django","html","javascript","mariadb","postgresql","python"],"created_at":"2025-12-24T18:52:45.210Z","updated_at":"2026-04-11T17:08:59.478Z","avatar_url":"https://github.com/S13G.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Subasta\n\nSubasta is an auction ecommerce website similar to Ebay where users can list items and put them up for auction and whoever has the highest bid for that particular auctions wins the item\n## Features\n\nUsers are able to:\n\n1. Create account\n2. Create a listing\n3. Start an auction\n4. Bid on a particular auction\n5. Add items to their watchlist\n6. Close an auction\n7. Check active listings\n8. Make comments on an auction\n9. Win auctions\n\n## TECHNOLOGIES USED FOR THE BACKEND\n\nSubasta is built using\n\n- **PYTHON**\n\n  ![PYTHON](https://github.com/S13G/Subasta/blob/main/static/tools/rsz_python.png)\n\n- **HTML**\n\n  ![HTML](https://github.com/S13G/Subasta/blob/main/static/tools/rsz_html.png)\n\n- **CSS**\n\n  ![CSS](https://github.com/S13G/Subasta/blob/main/static/tools/rsz_css.png)\n\n- **DJANGO**\n  \n  ![DJANGO](https://github.com/S13G/Subasta/blob/main/static/tools/rsz_django.png)\n\n- **BOOTSTRAP**\n\n  ![BOOTSTRAP](https://github.com/S13G/Subasta/blob/main/static/tools/bootstrap-transformed.png)\n\n- **MARIA DB (database used)**\n\n  ![MARIADB](https://github.com/S13G/Subasta/blob/main/static/tools/rsz_mariadb.png)\n\n- **JAVASCRIPT**\n\n  ![JAVASCRIPT](https://github.com/S13G/Subasta/blob/main/static/tools/rsz_js.png)\n\n### Installation\n\nTo run this project on your machine. Make sure you have __python3__ installed on your machine.\nCreate a virtual environment on your code editor using the command\n\n```virtualenv \u003cname of environment\u003e```\n\nIf virtualenv is not installed on your machine. Install it or use this alternative to create a virtual environment\n\n```python -m venv \u003cname of environment\u003e```\n\nAfter virtual environment has been created. Install all packages listed in the requirements.txt file using the command\nbelow:\n\n```pip install -r requirements.txt```\n\nAll packages should install without errors.\n\nAfter package installation, generate a secret key in your terminal with the command below\n\n```\nfrom django.core.management.utils import get_random_secret_key\n\nprint(get_random_secret_key())\n```\n\nThis generates a secret key. Copy the key\n\nCreate a ```.env``` file in the product directory\n\nInput ```SECRET_KEY=\u003csecret key copied from terminal\u003e```\n\nThen run the python server with the command\n\n```python3 manage.py runserver```\n\n### Preview\n\n![SUBASTA image 1](https://github.com/S13G/Subasta/blob/main/static/tools/Screenshot1.png)\n\n![SUBASTA image 2](https://github.com/S13G/Subasta/blob/main/static/tools/Screenshot2.png)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs13g%2Fsubasta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fs13g%2Fsubasta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs13g%2Fsubasta/lists"}