Skip to content

Commit 0c7650f

Browse files
authored
Updated
1 parent 47271b0 commit 0c7650f

File tree

1 file changed

+41
-1
lines changed

1 file changed

+41
-1
lines changed

README.md

+41-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,41 @@
1-
# DINE-IN
1+
<p align="center">
2+
<h1>DINE-IN</h1>
3+
<img width="460" height="300" src="http://www.fillmurray.com/460/300">
4+
</p>
5+
Customers Place order while scanning QR code on tables , Check menu and place orders. Hotel Manager / staff checks the orders and serve it to customers . Customers check out with payment.
6+
7+
## Getting Started
8+
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
9+
10+
### Prerequisites
11+
Requires Nodejs and Python3 to run locally. See instructions to setup [Python3](https://www.python.org/downloads/) and [Nodejs](https://nodejs.org/en/download/) .
12+
13+
### Installation
14+
#### Frontend(React)
15+
* Clone the repository in a folder and write the following commands
16+
```
17+
1.git clone https://github.com/WooTechnology/DINE-IN.git
18+
2.cd DINE-IN/Hotel App/frontend/
19+
3.npm install
20+
```
21+
* Start Development Server
22+
```
23+
4.npm start
24+
```
25+
Open [localhost:3000](https://localhost:3000)
26+
#### Backend(Flask)
27+
* Setup virtual environment
28+
```
29+
1.pip install virtualenv
30+
2.virtualenv venv --python=python3.6
31+
3.source venv/bin/activate
32+
```
33+
* Install all dependencies
34+
```
35+
pip install -r requirements.txt
36+
```
37+
* Run Server
38+
```
39+
python3 app.py
40+
```
41+

0 commit comments

Comments
 (0)