{"id":27945195,"url":"https://github.com/atalek/atal-pizza","last_synced_at":"2025-08-01T23:40:03.436Z","repository":{"id":215343978,"uuid":"722180261","full_name":"atalek/atal-pizza","owner":"atalek","description":"Food ordering webapp made with Nuxt3","archived":false,"fork":false,"pushed_at":"2024-08-26T23:46:40.000Z","size":2124,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-05T03:26:39.515Z","etag":null,"topics":["full-stack","hybrid","mongodb","mongoose","node","nuxt","nuxt3","nuxtjs","s3","server-rendering","stripe","tailwindcss"],"latest_commit_sha":null,"homepage":"https://atal-pizza.atalek.com","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/atalek.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}},"created_at":"2023-11-22T15:52:12.000Z","updated_at":"2025-02-13T16:23:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"0e887cfd-850d-4331-bb89-42b6ee7f346e","html_url":"https://github.com/atalek/atal-pizza","commit_stats":null,"previous_names":["amphei/atal-pizza","atalek/atal-pizza"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/atalek/atal-pizza","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atalek%2Fatal-pizza","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atalek%2Fatal-pizza/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atalek%2Fatal-pizza/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atalek%2Fatal-pizza/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atalek","download_url":"https://codeload.github.com/atalek/atal-pizza/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atalek%2Fatal-pizza/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268314191,"owners_count":24230937,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["full-stack","hybrid","mongodb","mongoose","node","nuxt","nuxt3","nuxtjs","s3","server-rendering","stripe","tailwindcss"],"created_at":"2025-05-07T12:56:19.480Z","updated_at":"2025-08-01T23:40:03.404Z","avatar_url":"https://github.com/atalek.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ATAL-Pizza\n\n![Landing page](https://res.cloudinary.com/dkofkuquf/image/upload/v1705712862/nuxtshop/enyeltcq2s1w3j5trr1r.png)\n\n## Description\n\nThis project demonstrates a full-stack food ordering application built with\nmodern web technologies. It features a user-friendly interface, secure\nauthentication, seamless payment processing, and image storage capabilities.\n\n## Features\n\n- Full featured shopping cart\n- User profile with orders\n- Admin product management\n- Admin user management\n- Admin Order details page\n- Checkout process (shipping, payment method)\n- Stripe payment integration\n\n## Built with\n\n- Nuxt 3\n- MongoDB\n- Tailwind\n- Sidebase nuxt-auth\n- AWS S3\n- Stripe\n\n![Shopping cart page](https://res.cloudinary.com/dkofkuquf/image/upload/v1705713025/nuxtshop/kcng6aua8u7vytakwfow.png)\n![Create a menu item page](https://res.cloudinary.com/dkofkuquf/image/upload/v1705712874/nuxtshop/x6qaumyt841vswd9yphd.png)\n\n## Setup\n\n1. **Clone the repository.**\n\n   ```bash\n   git clone https://github.com/atalek/atal-pizza.git\n\n   ```\n\n2. **Navigate to the project directory.**\n\n   ```bash\n   cd atal-pizza\n\n   ```\n\n3. **Install dependencies.**\n\n   ```bash\n   bun install\n\n   ```\n\n4. **Configure environment variables.**\n\n   - Create a `.env` file in the root of the project.\n   - Add the necessary environment variables.\n\n   ```env\n   # Mongodb\n   MONGODB_URI=your_mongodb_db_uri\n\n   # Nuxt auth\n   AUTH_SECRET=your_auth_secret\n   AUTH_ORIGIN=url_of_your_site\n   API_ROUTE_SECRET=your_api_route_secret\n\n   # AWS S3\n   AWS_SECRET_KEY_ID=your_aws_secret_key\n   AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key\n   AWS_URL=your_s3bucket_url\n\n   # Google OAuth\n   GOOGLE_CLIENT_ID=your_google_client_id\n   GOOGLE_CLIENT_SECRET_KEY=your_google_client_secret\n\n   # Stripe\n   STRIPE_PUBLIC_KEY=your_stripe_public_key\n   STRIPE_SECRET_KEY=your_stripe_secret_key\n   STRIPE_WEBHOOK_SECRET=your_stripe_webhook_secret\n\n   NODEENV = \"development\"\n   ```\n\n5. **Run the development server.**\n\n   ```bash\n   bun dev\n\n   ```\n\n6. **Open your browser and visit http://localhost:3000 to view the Pizza\n   webapp.**\n\n## Live Version\n\n[https://atal-pizza.atalek.com/](https://atal-pizza.atalek.com/)\n\n## Author\n\nGithub [@atalek](https://github.com/atalek) \u003cbr\u003e Linkedin:\n[@Aleksandar Atanasovski](https://www.linkedin.com/in/aleksandar-atanasovski-16b123263/)\n\u003cbr\u003e Portfolio: [https://www.atalek.com/](https://www.atalek.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatalek%2Fatal-pizza","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatalek%2Fatal-pizza","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatalek%2Fatal-pizza/lists"}