diff --git a/README.md b/README.md index 7a29ae1..223d05f 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,10 @@ - https://learn.adafruit.com/neopixels-on-raspberry-pi/raspberry-pi-wiring ### RFID -- https://pimylifeup.com/raspberry-pi-rfid-rc522/ \ No newline at end of file +- https://pimylifeup.com/raspberry-pi-rfid-rc522/ + +### Installing OpenCV +- https://raspberrytips.com/install-opencv-on-raspberry-pi/ + +### Website +- https://www.tutorialspoint.com/flask diff --git a/website/app.py b/website/app.py new file mode 100644 index 0000000..c88d035 --- /dev/null +++ b/website/app.py @@ -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') diff --git a/website/static/DALL·E 2023-01-13 17.49.11 - dinosaur face frontal really close upcartoon.png b/website/static/DALL·E 2023-01-13 17.49.11 - dinosaur face frontal really close upcartoon.png new file mode 100644 index 0000000..39579bb Binary files /dev/null and b/website/static/DALL·E 2023-01-13 17.49.11 - dinosaur face frontal really close upcartoon.png differ