{"id":18916435,"url":"https://github.com/malldonado/api-restaurante","last_synced_at":"2026-05-16T11:33:22.108Z","repository":{"id":238348552,"uuid":"795731880","full_name":"malldonado/api-restaurante","owner":"malldonado","description":"🥕 Restaurant API for RPG: Manage your virtual tavern seamlessly with AdonisJS 5 and TypeScript, complete with table management functionalities. Utilizing SQLite3 for development and MySQL for production, with TDD options for robust testing capabilities.","archived":false,"fork":false,"pushed_at":"2024-07-19T10:36:08.000Z","size":163,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-19T23:27:21.444Z","etag":null,"topics":["adonisjs5","api-rest","mysql","sqlite3","tdd","typescript"],"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/malldonado.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-05-03T23:07:40.000Z","updated_at":"2024-07-19T10:36:12.000Z","dependencies_parsed_at":"2025-02-20T20:30:01.601Z","dependency_job_id":"2ed20343-57e9-42a6-ae34-052b079e4401","html_url":"https://github.com/malldonado/api-restaurante","commit_stats":null,"previous_names":["malldonado/api-restaurante"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/malldonado/api-restaurante","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malldonado%2Fapi-restaurante","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malldonado%2Fapi-restaurante/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malldonado%2Fapi-restaurante/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malldonado%2Fapi-restaurante/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/malldonado","download_url":"https://codeload.github.com/malldonado/api-restaurante/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malldonado%2Fapi-restaurante/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33100867,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["adonisjs5","api-rest","mysql","sqlite3","tdd","typescript"],"created_at":"2024-11-08T10:19:37.880Z","updated_at":"2026-05-16T11:33:22.081Z","avatar_url":"https://github.com/malldonado.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🥕 Restaurant API\n\n## Overview\n\nWelcome to the Restaurant API This API allows you to manage your virtual tavern seamlessly with AdonisJS 5 and TypeScript, featuring robust table management functionalities. For development, we utilize SQLite3, while MySQL is used for production. Additionally, the API is designed with Test-Driven Development (TDD) options to ensure reliable and maintainable code.\n\n## Features\n\n- **Table Management:** Manage tables, reservations, and seating arrangements effortlessly.\n- **TypeScript:** Enjoy type safety and modern JavaScript features.\n- **AdonisJS 5:** Leverage the power of AdonisJS, a fully-featured Node.js framework.\n- **SQLite3 for Development:** Lightweight and easy-to-use database for local development.\n- **MySQL for Production:** Reliable and scalable database solution for production.\n- **TDD:** Implement Test-Driven Development for robust testing capabilities.\n\n## Tech Stack\n\n- **Languages:** TypeScript\n- **Framework:** AdonisJS 5\n- **Databases:** SQLite3 (development), MySQL (production)\n- **Testing:** TDD\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js\n- npm or yarn\n- SQLite3 (for development)\n- MySQL (for production)\n\n### Installation\n\n1. **Clone the repository:**\n\n    ```bash\n    git clone https://github.com/malldonado/api-restaurante.git\n    cd api-restaurante/roleplay-api\n    ```\n\n2. **Install dependencies:**\n\n    ```bash\n    npm install\n    # or\n    yarn install\n    ```\n\n3. **Set up the environment variables:**\n\n    Create a `.env` file in the root directory and add the following variables:\n\n    ```env\n    NODE_ENV=development\n    APP_KEY=your_app_key\n    DB_CONNECTION=sqlite\n    SQLITE_FILENAME=./db.sqlite3\n    MYSQL_HOST=127.0.0.1\n    MYSQL_PORT=3306\n    MYSQL_USER=root\n    MYSQL_PASSWORD=your_mysql_password\n    MYSQL_DB_NAME=restaurant\n    ```\n\n4. **Run migrations:**\n\n    ```bash\n    node ace migration:run\n    ```\n\n### Running the Development Server\n\nStart the AdonisJS development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\n## Starting the Server\n\nThe server will start on http://localhost:3333.\n\n## Testing\n\nTo run tests, use the following command:\n\n```bash\nnpm run test\n# or\nyarn test\n```\n\n# License\n\nThis project is licensed under the MIT License. See the LICENSE file for details.\n\n# Acknowledgements\n\n- AdonisJS\n- TypeScript\n- SQLite\n- MySQL\n\nThis README.md provides a comprehensive overview of the API, including instructions for installation, configuration, execution, and testing, as well as details about the functionalities and the technological stack used in the project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmalldonado%2Fapi-restaurante","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmalldonado%2Fapi-restaurante","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmalldonado%2Fapi-restaurante/lists"}