Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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