{"id":21964592,"url":"https://github.com/apollo-level2-web-dev/quick-order-server-starter","last_synced_at":"2026-04-30T22:31:44.918Z","repository":{"id":254103446,"uuid":"845501983","full_name":"Apollo-Level2-Web-Dev/quick-order-server-starter","owner":"Apollo-Level2-Web-Dev","description":"The repository for server-side setup for a quick order system, designed specifically for educational purposes in the Next Level Web Development course. This project serves as a tutorial for integrating the AmarPay payment system into a server-side application.","archived":false,"fork":false,"pushed_at":"2024-08-21T11:33:04.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-29T13:35:42.472Z","etag":null,"topics":["aamarpay","payment","server","starter"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/Apollo-Level2-Web-Dev.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":"2024-08-21T11:25:55.000Z","updated_at":"2024-08-21T11:34:23.000Z","dependencies_parsed_at":"2024-08-21T12:52:12.264Z","dependency_job_id":"c2620bd4-7990-49c9-8708-c765d8c1902d","html_url":"https://github.com/Apollo-Level2-Web-Dev/quick-order-server-starter","commit_stats":null,"previous_names":["apollo-level2-web-dev/quick-order-server-starter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Apollo-Level2-Web-Dev/quick-order-server-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apollo-Level2-Web-Dev%2Fquick-order-server-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apollo-Level2-Web-Dev%2Fquick-order-server-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apollo-Level2-Web-Dev%2Fquick-order-server-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apollo-Level2-Web-Dev%2Fquick-order-server-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Apollo-Level2-Web-Dev","download_url":"https://codeload.github.com/Apollo-Level2-Web-Dev/quick-order-server-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apollo-Level2-Web-Dev%2Fquick-order-server-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32479448,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"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":["aamarpay","payment","server","starter"],"created_at":"2024-11-29T12:25:40.334Z","updated_at":"2026-04-30T22:31:39.905Z","avatar_url":"https://github.com/Apollo-Level2-Web-Dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quick Order Server Starter\n\nThe repository for server-side setup for a quick order system, designed specifically for educational purposes in the Next Level Web Development course. This project serves as a tutorial for integrating the AmarPay payment system into a server-side application.\n\n---\n\n### **Directory Structure**\n\n```plaintext\nsrc/\n├── app/                     # Core application logic\n│   ├── config/              # Configuration files\n│   │   ├── db.ts            # Database configuration\n│   │   └── seed.ts          # Data seeding script\n│   └── modules/            # Application modules (e.g., order, product)\n│       ├── order/          # Order module\n│       │   ├── order.controller.ts   # Controller for order-related routes\n│       │   ├── order.model.ts        # Mongoose model for orders\n│       │   ├── order.routes.ts       # Routes for order-related endpoints\n│       │   └── order.service.ts      # Service layer for order logic\n│       └── product/        # Product module\n│           ├── product.controller.ts # Controller for product-related routes\n│           ├── product.model.ts      # Mongoose model for products\n│           ├── product.routes.ts     # Routes for product-related endpoints\n│           └── product.service.ts    # Service layer for product logic\n├── app.ts                   # Main application entry point\n└── index.ts                 # Server initialization\n.env                         # Environment variables\n```\n\n---\n\n### **Environment Variables**\n\nCreate a `.env` file in the root of your project directory with the following content:\n\n```plaintext\nDB_URL=\"YOUR MONGO URI\"\nPORT=3000\n```\n\n- **`DB_URL`**: The connection string for your MongoDB database.\n- **`PORT`**: The port on which the server will run.\n\n---\n\n### **Getting Started**\n\nTo get started with this project, follow these steps:\n\n1. **Clone the Repository:**\n\n   ```bash\n   git clone https://github.com/Apollo-Level2-Web-Dev/quick-order-server-starter.git\n   ```\n\n2. **Navigate to the Project Directory:**\n\n   ```bash\n   cd quick-order-server-starter\n   ```\n\n3. **Install Dependencies:**\n\n   Make sure you have Node.js installed. Run the following command to install the required dependencies:\n\n   ```bash\n   npm install\n   ```\n\n4. **Set Up Environment Variables:**\n\n   Create a `.env` file in the root of your project directory and add the environment variables specified above.\n\n5. **Run the Development Server:**\n\n   Start the development server with:\n\n   ```bash\n   npm run dev\n   ```\n\n   The server will be available at `http://localhost:3000` (or your configured port).\n\n---\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapollo-level2-web-dev%2Fquick-order-server-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapollo-level2-web-dev%2Fquick-order-server-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapollo-level2-web-dev%2Fquick-order-server-starter/lists"}