Commit 99e14736 authored by Pamal-Ranasinghe's avatar Pamal-Ranasinghe

Initial commit

parents
Pipeline #5474 failed with stages
#Directories
virtual/
#Fils
.env
.gitignore
!.env.example
!.gitignore.example
\ No newline at end of file
# RP_SERVER_ONE
This flask will be using to mainly convert the content of the lecture video to hand gestures.
## Installation
First of all create a virtual environment:
```
python -m venv virtual
```
Activate the virtual environment:
```
virtual\Scripts\activate
````
Install all the dependencies with pip:
```
$ pip install -r requirements.txt
```
Run the application using:
```
python app.py
```
\ No newline at end of file
#import flask module
from flask import Flask
app = Flask(__name__)
#Test route
@app.route('/')
def hello_world():
return 'Hello World'
#Main function
if __name__ == '__main__':
app.run()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment