added test programm for website and documentation
This commit is contained in:
parent
79e34c3f51
commit
548055e675
@ -9,4 +9,10 @@
|
||||
- https://learn.adafruit.com/neopixels-on-raspberry-pi/raspberry-pi-wiring
|
||||
|
||||
### RFID
|
||||
- https://pimylifeup.com/raspberry-pi-rfid-rc522/
|
||||
- https://pimylifeup.com/raspberry-pi-rfid-rc522/
|
||||
|
||||
### Installing OpenCV
|
||||
- https://raspberrytips.com/install-opencv-on-raspberry-pi/
|
||||
|
||||
### Website
|
||||
- https://www.tutorialspoint.com/flask
|
||||
|
10
website/app.py
Normal file
10
website/app.py
Normal file
@ -0,0 +1,10 @@
|
||||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route('/')
|
||||
def index():
|
||||
return 'Hello world'
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run(debug=True, port=5000, host='0.0.0.0')
|
Binary file not shown.
After Width: | Height: | Size: 548 KiB |
Loading…
x
Reference in New Issue
Block a user