The Restaurant Management Web App is a software solution designed to help restaurant owners and managers efficiently manage daily operations. This application aims to enhance productivity, facilitate monitoring, and improve customer experience.
You can see deployment web on yummypiv.com
-
Python version 3.12 download
-
Django version 4.2 download
-
Pip version 24.0
-
Firebase Storage (guide)(https://firebase.com)
# clone repository
git clone https://github.com/ipungg-junior/yummypiv.git
# Create python env inside repository
cd yummypiv/
python -m venv env
# activate python env
source penv/bin/activate
# install python package
pip install -r requirements.txt
# Clone and fill project configuration (mail server, firebase credentials and etc)
mv root_conf.json.example root_conf.json
nano root_conf.json
# make db migrations
python manage.py makemigrations apps
python manage.py migrate apps
python manage.py migrate
# collect static
mkdir staticfiles
python manage.py collectstatic
# Run django web server on default port 8000
python manage.py runserver