{"id":25274348,"url":"https://github.com/levoratojoao/commerce","last_synced_at":"2026-04-17T10:31:37.189Z","repository":{"id":185734593,"uuid":"673772672","full_name":"LevoratoJoao/Commerce","owner":"LevoratoJoao","description":"eBay-like e-commerce auction site","archived":false,"fork":false,"pushed_at":"2024-11-21T22:29:33.000Z","size":875,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T09:15:20.137Z","etag":null,"topics":["cs50web","django","python"],"latest_commit_sha":null,"homepage":"https://commerce-levorato.vercel.app","language":"JavaScript","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/LevoratoJoao.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}},"created_at":"2023-08-02T11:43:43.000Z","updated_at":"2024-11-22T23:50:55.000Z","dependencies_parsed_at":"2024-11-21T20:37:04.691Z","dependency_job_id":null,"html_url":"https://github.com/LevoratoJoao/Commerce","commit_stats":null,"previous_names":["levoratojoao/commerce"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LevoratoJoao/Commerce","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LevoratoJoao%2FCommerce","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LevoratoJoao%2FCommerce/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LevoratoJoao%2FCommerce/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LevoratoJoao%2FCommerce/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LevoratoJoao","download_url":"https://codeload.github.com/LevoratoJoao/Commerce/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LevoratoJoao%2FCommerce/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31925314,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T10:19:20.377Z","status":"ssl_error","status_checked_at":"2026-04-17T10:19:18.682Z","response_time":62,"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":["cs50web","django","python"],"created_at":"2025-02-12T14:29:47.395Z","updated_at":"2026-04-17T10:31:37.173Z","avatar_url":"https://github.com/LevoratoJoao.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Commerce\nThis is a e-commerce auction site that will allow users to post auction listings, place bids on listings, comment on those listings, and add listings to a “watchlist.”\n\n# Installation \n\nTo use this project first you need python and django\n\nTo install django\n```bash\npip3 install Django\n```\n\nTo run the project\n```bash\npython3 manage.py runserver\n```\n\nIf you change anything in ``àuctions/models.py``, you'll need to first run this commands to migrate those changes to your database\n```bash\npython3 manage.py makemigrations\n```\n\n```bash\npython manage.py migrate\n```\n\nTo create a superuser account that can access Django's admin interface\n```bash\npython3 manage.py createsuperuser\n```\n\n# Demo\n\nHere it is a simple usage example on YouTube: [Demo](https://youtu.be/pcUBH0xVp_k).\n\n## Models\n\nThe application have five models: ``AuctionListings``, ``Bids``, ``Comments``, ``Category`` and ``User``.\n\n## Create Listing\n\nUsers will be able to visit a page to create a new listing. They can specify a title for the listing, a text-based description, and what the starting bid should be. Users also optionally will be able to provide a URL for an image for the listing and a ``Category``.\n\n## Active Listing Page\n\nIt's the default route of this web application and users can view all of the currently active auction listing. For each active listing, the page display the title, description, current price and photo.\n\n## Listing Page\n\nClicking on a listing will take users to a page specific to that listing. On that page, users will be able to view all details about the listing, including the current price for the listing. If the user is signed he will have the following options:\n  * Add the item to their ``Watchlist``, if the item is already on the watchlist, the user will be able to remove it.\n  * Bid on the item, the bid must be at least as large as the starting bid, and must be greater tahn anyu other bids that have been placed. If not the user will be presented with an error.\n  * Add comments to the listing page. The listing page will display all comments that have been made on the listing.\n  * If he is signed and is the one who created the listing, he will be able to \"close\" the auction from this page, which makes the highest bidder the winner of the auction and makes the listing no longer active. The page will inform the user who has won when he enters the page.\n\n## Watchlist\n\nUsers who are signed in can visit a Watchlist page, which will display all of the listings that a user had added to their watchlist. Clicking on any of those listings should take the user to that listing's page.\n\n## Categories\nUsers can visit a page that displays a list of all listing categories. Clicking on the name of any category will take the user to a page that displays all of the active listing in that category.\n\n## Django Admin Interface\n\nVia the Django admin interface, a site administrator will be able to view, add, edit and delete any listings, comments and bids made on the site\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flevoratojoao%2Fcommerce","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flevoratojoao%2Fcommerce","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flevoratojoao%2Fcommerce/lists"}