{"id":25436704,"url":"https://github.com/Fialex1212/django-restaurant","last_synced_at":"2025-11-01T04:30:22.799Z","repository":{"id":274247187,"uuid":"917831017","full_name":"Fialex1212/restaurant","owner":"Fialex1212","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-15T00:32:50.000Z","size":29266,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-15T01:23:15.127Z","etag":null,"topics":["bash-script","django","docker-compose","html-css-javascript","postgresql"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/Fialex1212.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2025-01-16T18:16:02.000Z","updated_at":"2025-02-15T00:32:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"ee601ec1-ba18-4bd3-857a-d0321bc8ca29","html_url":"https://github.com/Fialex1212/restaurant","commit_stats":null,"previous_names":["fialex1212/restaurant"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fialex1212%2Frestaurant","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fialex1212%2Frestaurant/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fialex1212%2Frestaurant/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fialex1212%2Frestaurant/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Fialex1212","download_url":"https://codeload.github.com/Fialex1212/restaurant/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239255601,"owners_count":19608306,"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","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":["bash-script","django","docker-compose","html-css-javascript","postgresql"],"created_at":"2025-02-17T08:21:49.610Z","updated_at":"2025-11-01T04:30:22.762Z","avatar_url":"https://github.com/Fialex1212.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Restaurant Management System\n\n- [Introduction](#introduction)\n- [Features](#features)\n- [Technologies Used](#technologies-used)\n- [Installation](#installation)\n- [Docker Deployment](#docker-deployment)\n- [Project Structure](#project-structure)\n- [Contributing](#contributing)\n\n## Introduction\n\nThis project is a **Restaurant Management System** built with Django, designed to streamline the operations of a restaurant by managing menus, orders, and customer interactions.\n\n## Features\n\n- **Menu Management**: Create, update, and organize menu items with categories and pricing.\n- **Order Processing**: Handle customer orders efficiently, track order status, and manage payments.\n- **Customer Management**: Maintain customer information and order history to enhance service quality.\n- **Responsive Design**: Ensure seamless access across various devices, including desktops, tablets, and smartphones.\n\n## Technologies Used\n\n- Frontend:\n  - [HTML, CSS, JS]\n- Backend:\n  - [Python, Django, PostgreSQL]\n\n## Installation\n\nTo set up the project locally, follow these steps:\n\n1. **Clone the repository**:\n\n   ```bash\n   git clone https://github.com/Fialex1212/restaurant.git\n   cd restaurant\n   ```\n\n2. **Create and activate a virtual environment**:\n\n   ```bash\n   python3 -m venv env\n   source env/bin/activate  # On Windows, use `env\\Scripts\\activate`\n   ```\n\n3. **Install the required dependencies**:\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. **Apply migrations to set up the database**:\n\n   ```bash\n   python manage.py migrate\n   ```\n\n5. **Create a superuser to access the admin panel**:\n\n   ```bash\n   python manage.py createsuperuser\n   ```\n\n6. **Run the development server**:\n\n   ```bash\n   python manage.py runserver\n   ```\n\n   Access the application at `http://127.0.0.1:8000/` and the admin panel at `http://127.0.0.1:8000/admin/`.\n\n## Docker Deployment\n\nTo deploy the application using Docker:\n\n1. **Build and run the Docker image**:\n\n   ```bash\n   docker-compose up --build .\n   ```\n\n   The application will be available at `http://localhost:8000/` or `http://127.0.0.1:8000/`.\n\n## Project Structure\n\nThe project's structure is as follows:\n\n```\nrestaurant/\n├── app/\n│   ├── migrations/\n│   ├── static/\n│   ├── templates/\n│   ├── __init__.py\n│   ├── admin.py\n│   ├── apps.py\n│   ├── models.py\n│   ├── tests.py\n│   └── views.py\n├── media/\n│   └── uploads/\n│       └── dishes/\n├── restaurant/\n│   ├── __init__.py\n│   ├── asgi.py\n│   ├── settings.py\n│   ├── urls.py\n│   └── wsgi.py\n├── .env\n├── .gitignore\n├── Dockerfile\n├── docker-compose.yml\n├── manage.py\n└── requirements.txt\n```\n\n- `app/`: Contains the core application code, including models, views, templates, and static files.\n- `media/`: Houses user-uploaded media, such as images of dishes.\n- `restaurant/`: Contains project-level configurations and settings.\n- `.env`: Environment variables for configuration.\n- `Dockerfile`: Instructions to build the Docker image.\n- `docker-compose.yml`: Configuration for Docker Compose to manage multi-container deployments.\n- `manage.py`: Command-line utility for administrative tasks.\n- `requirements.txt`: List of Python dependencies.\n\n## Contributing\n\nContributions are welcome! To contribute:\n\n1. Fork the repository.\n2. Create a new branch: `git checkout -b feature-name`.\n3. Make your changes and commit them: `git commit -m 'Add new feature'`.\n4. Push to the branch: `git push origin feature-name`.\n5. Submit a pull request detailing your changes.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFialex1212%2Fdjango-restaurant","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FFialex1212%2Fdjango-restaurant","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFialex1212%2Fdjango-restaurant/lists"}