/grub

🍔 Grub is a simple restaurant CRUD web application. Made with Django and Bootstrap.

Primary LanguageHTML

Grub (Project Setup)

Virtual Environment Setup

1. Set .virtualenvs/ in your home directory, if you don't have one yet.

$ mkdir ~/.virtualenvs

2. Create a new virtual environment

$ python3 -m venv ~/.virtualenvs/grub

3. Activate virtual environment

$ source ~/.virtualenvs/grub/bin/activate

Test Django Project

4. Clone the repository

$ git clone https://github.com/aerielcruz/grub.git

5. Change to the project's directory

$ cd grub/

6. Install the package requirements

$ pip install -r requirements.txt

7. Run the server (Open in browser: http://127.0.0.1:8000/)

$ python manage.py runserver

Admin Credentials

User: grub

Pass: grubmaster

Screenshots

Home Page Browse Restaurants Page User Profile Page
screen shot 2018-12-22 at 11 43 16 pm screen shot 2018-12-22 at 11 47 47 pm screen shot 2018-12-23 at 12 09 18 am

Purpose

This was made for my finals project in my Python class. I do not own any of the images and/or data as they were only used as an example for this project.