{"id":15408792,"url":"https://github.com/chrisbbreuer/ecommerce","last_synced_at":"2026-04-20T14:08:29.819Z","repository":{"id":111145185,"uuid":"601462621","full_name":"chrisbbreuer/ecommerce","owner":"chrisbbreuer","description":null,"archived":false,"fork":false,"pushed_at":"2023-02-14T06:04:08.000Z","size":515,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T06:26:00.103Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","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/chrisbbreuer.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-02-14T05:38:19.000Z","updated_at":"2023-03-04T03:28:22.000Z","dependencies_parsed_at":"2023-03-11T00:00:34.456Z","dependency_job_id":null,"html_url":"https://github.com/chrisbbreuer/ecommerce","commit_stats":{"total_commits":1,"total_committers":1,"mean_commits":1.0,"dds":0.0,"last_synced_commit":"67522a03be471589592f7db4e8bf76f128c6b0de"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chrisbbreuer/ecommerce","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisbbreuer%2Fecommerce","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisbbreuer%2Fecommerce/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisbbreuer%2Fecommerce/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisbbreuer%2Fecommerce/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chrisbbreuer","download_url":"https://codeload.github.com/chrisbbreuer/ecommerce/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisbbreuer%2Fecommerce/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32050460,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"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":[],"created_at":"2024-10-01T16:35:12.115Z","updated_at":"2026-04-20T14:08:29.803Z","avatar_url":"https://github.com/chrisbbreuer.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FluxBucket — Challenge\n\nThis is a simple application that takes orders from listed products. It is built with Laravel, Vue 3 \u0026 Inertia. \n\n## 🚧 Prerequisites\n\nGiven this project requires only a default Laravel install, I have opted out of using Laravel Sail _(Docker)_ in favor of a more lightweight \"setup\" approach. This means you'll need to have the following installed on your machine:\n\n- Any PHP 8 version _(e.g. 8.2.2)_\n- Composer 2 _(e.g. 2.5.3)_\n- Node 16 or 18 _(project is nvm ready)_\n\n## 🚀 Get Started\n\nTo get started, you'll need to clone this repository and run the commands below:\n\n```bash\n# Step 1: Run the setup script\n#\n# The setup command is a custom script that...\n#\n#   1. installs Laravel dependencies\n#   2. copies the .env.example to .env\n#   3. generates your local encryption key\n#   4. creates the SQLite database file\n#   5. runs the migrations\n#   6. seeds the database with some dummy data\n#   7. installs the \"frontend dependencies\"\n#\n# \n#\nnpm run setup\n\n# Step 2: Serve the application\n#\n# Use the \"artisan serve\" command to \n# serve the app on port 8000.\n#\nphp artisan serve --port 8000\n\n# Optional: Install the frontend dependencies\n#\n# You may skip this step unless you prefer using `pnpm` \n# or `yarn`. _(I personally prefer pnpm the most 🙂)_\n#\nnpm install\n\n# Step 3: Run the frontend development server\n#\n# The frontend is built with Vue 3 \u0026 Inertia. \n# To run the development server, run the\n# command below:\n# \nnpm run dev\n\nnvm use 18 # you may use nvm to manage your Node version\n```\n\n### Login Credentials\n\nHere are the 2 users available for login\n\n```\nUsername: test@example.com\nPassword: password\n\nUsername: test@example2.com\nPassword: password\n```\n\n### Demo\n\nHere's a quick demo of the application in action.\n\n![Application Demo](https://user-images.githubusercontent.com/33320494/218632580-6bde8ac5-8a57-488c-af7f-36c606b05d13.gif)\n\n### ER Diagram\n\nBelow is this code challenge's Entity Relationship diagram.\n\n![Entity Relationship diagram](https://user-images.githubusercontent.com/33320494/218578651-eb3a8320-5e15-49f3-95e9-0b41f491e446.png)\n\n## 📖 Testing \n\nYou can run the test suite by running the command below:\n\n```bash\nphp artisan test\n```\n\nThe output will look similar to this:\n\n![testing](https://user-images.githubusercontent.com/33320494/218633137-b246222d-a2ed-4418-a111-16674f473381.gif)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrisbbreuer%2Fecommerce","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrisbbreuer%2Fecommerce","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrisbbreuer%2Fecommerce/lists"}