{"id":29458922,"url":"https://github.com/gilcierweb/app-rust-nuxt-store","last_synced_at":"2026-04-14T04:31:27.368Z","repository":{"id":304255801,"uuid":"1018200202","full_name":"gilcierweb/app-rust-nuxt-store","owner":"gilcierweb","description":"App build Product Store with Rust Lang and Nuxt.js. Api Rust with web fremework Loco.rs and frontend with nuxt.js using vue.js.","archived":false,"fork":false,"pushed_at":"2026-01-01T23:59:34.000Z","size":866,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-07T08:55:06.685Z","etag":null,"topics":["nuxt","nuxt3","nuxtjs","postgresql","rust","rust-lang","vue"],"latest_commit_sha":null,"homepage":"","language":"Vue","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/gilcierweb.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-07-11T19:32:41.000Z","updated_at":"2026-01-01T23:59:37.000Z","dependencies_parsed_at":"2025-07-12T00:32:47.407Z","dependency_job_id":"90edf905-1482-4d40-8205-cb8b8cdbe284","html_url":"https://github.com/gilcierweb/app-rust-nuxt-store","commit_stats":null,"previous_names":["gilcierweb/app-rust-nuxt-store"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gilcierweb/app-rust-nuxt-store","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilcierweb%2Fapp-rust-nuxt-store","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilcierweb%2Fapp-rust-nuxt-store/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilcierweb%2Fapp-rust-nuxt-store/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilcierweb%2Fapp-rust-nuxt-store/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gilcierweb","download_url":"https://codeload.github.com/gilcierweb/app-rust-nuxt-store/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilcierweb%2Fapp-rust-nuxt-store/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31782736,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: 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":["nuxt","nuxt3","nuxtjs","postgresql","rust","rust-lang","vue"],"created_at":"2025-07-14T00:10:04.170Z","updated_at":"2026-04-14T04:31:27.356Z","avatar_url":"https://github.com/gilcierweb.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# App Loco Framework Web Rust with Nuxt\n## App build with Rust Lang and Nuxt.js. Api Rust with Loco.rs and frontend with nuxt.js using vue.js.\n\n### [Loco.rs](https://loco.rs/) It’s Like [Ruby on Rails](https://rubyonrails.org/), but for [Rust Lang](https://www.rust-lang.org/). \n\n![App Nuxt](app-nuxt/assets/images/app-rust-nuxt-store.webp) \n\n### Skill\n\n- [Rust Lang](https://www.rust-lang.org/)\n- [Loco - Rust](https://loco.rs/)\n- [PostgreSQL](https://www.postgresql.org/)\n- [Vue.js](https://vuejs.org/)\n- [Nuxt.js](https://nuxt.com/)\n- [Tailwindcss](https://tailwindcss.com/)\n- [Shadcn Vue](https://www.shadcn-vue.com/)\n- [Daisy UI](https://daisyui.com/)\n- [Flyon UI](https://flyonui.com/)\n\n### Run app-loco\n\n```shell\ncd api_rust_loco/\ncargo loco start\n# run localhost:5150\n\n```\n\n### Run app-nuxt\n\n```shell\ncd app-nuxt/\npnpm dev --open\n# run localhost:3000\n\n```\n\n### Docker and Docker Compose\n\n```shell\n\ndocker-compose build\ndocker-compose up # run app-rust-loco http://localhost:5150 app-nuxt http://localhost:3000\n\ndocker-compose up --build # run app-rust-loco http://localhost:5150 app-nuxt http://localhost:3000\n\n# Run diesel migration for create all tables migrations on database\ndocker-compose run --rm app cargo loco db migrate # Or\n\ndocker-compose run --rm app /bin/bash\ncargo loco db migrate\n\n# Run db:seed For populate data faker on database\ndocker-compose run --rm app cargo loco db seed # Or\n\ndocker-compose run --rm app /bin/bash\ncargo loco db seed\n\n# App Loco Rust individual\ndocker-compose build app-rust-loco\ndocker-compose run --rm app-rust-loco\n# run http://0.0.0.0:5150\n\n# App Nuxt individual\ndocker-compose build app-nuxt\ndocker-compose run --rm app-nuxt\n# run http://0.0.0.0:3000\n\n# Optional\ndocker-compose ps\ndocker-compose stop\ndocker-compose down\ndocker-compose run --rm app bash\ndocker network create rustnet\n\n# sudo docker rmi --force $(docker images -f \"dangling=true\" -q)\n\n```\n\n### ToDo\n\n* [X] Users\n* [X] Profiles\n* [X] Posts\n* [X] Categories\n* [X] Products\n* [X] Products Images\n* [ ] Products Variants Images\n* [ ] Products Variants\n* [ ] Products Options\n* [ ] Products Variants Options\n* [ ] Cart\n* [ ] Cart Items\n* [ ] Orders\n* [ ] Orders Items\n* [ ] Payments Methods\n* [ ] Payments\n* [ ] Addresses\n* [ ] Shipping Methods\n* [ ] Shipments\n* [ ] Coupons\n* [ ] Coupons Usages\n* [ ] Review\n* [ ] Wishlist\n\n\nhttps://gilcierweb.com.br\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgilcierweb%2Fapp-rust-nuxt-store","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgilcierweb%2Fapp-rust-nuxt-store","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgilcierweb%2Fapp-rust-nuxt-store/lists"}