added test programm for website and documentation

This commit is contained in:
paul-loedige 2023-01-13 09:03:33 +00:00
parent 79e34c3f51
commit 548055e675
3 changed files with 17 additions and 1 deletions

View File

@ -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
View 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