Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alokshandilya/django-restaurant-api
A very simple API for restaurant management
https://github.com/alokshandilya/django-restaurant-api
Last synced: 11 days ago
JSON representation
A very simple API for restaurant management
- Host: GitHub
- URL: https://github.com/alokshandilya/django-restaurant-api
- Owner: alokshandilya
- Created: 2024-10-22T05:17:43.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-22T07:24:26.000Z (3 months ago)
- Last Synced: 2024-11-08T08:43:44.195Z (2 months ago)
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A simple API for restaurant management
This is a simple API for restaurant management. It allows you to create, read, update and delete restaurants and their menus.
## Tech Stack
- Python
- Django
- **Django REST Framework**
- SQLite## Installation
1. Clone the repository
```bash
git clone https://github.com/alokshandilya/django-restaurant-api
cd django-restaurant-api
```2. Create a virtual environment
```bash
python3 -m venv .venv
source .venv/bin/activate
```3. Install the dependencies
```bash
pip install -r requirements.txt
```4. Run the migrations
```bash
python manage.py migrate
```5. Run the server
```bash
python manage.py runserver
```## API Endpoints
TODO