Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 890 Bytes

README.md

File metadata and controls

51 lines (35 loc) · 890 Bytes

Restaurant-website

  • Restaurant website implemented in Django

  • Contains complete templates and DRF api endpoints yet to be integrated to a frontend.

DEPLOY LINKS

MAIN API ENPOINTS

/auth/users
/auth/token/login
/restaurant/api-token-auth
/restaurant/booking-api
/restaurant/menu-api

RUN APP

1. Create and Activate a virtual environment

python3 -m venv env

2. Install dependencies

pip install -r requirements.txt

3. Make database migrations

py manage.py makemigrations

then

py manage.py migrate

4. Run server

py manage.py runserver