[Raspberry] Triển khai Web application trên Raspberry Pi Part 1

Mô hình:

Các bạn làm theo mình nha:
1.
1
sudo apt-get install nginx -y
2.
1
/etc/init.d/nginx start
3. Sau đó mở trình duyệt lên và gõ vào địa chỉ ip của Raspberry. Muốn xem địa chỉ ip của Raspberry, bạn chỉ cần gõ vào terminal: ifconfig
4.
1
mkdir /var/www/lab_app
5.
1
cd /var/www/lab_app
6.
1
pip install virtualenv
7.
1
virtualenv venv
8.
1
. venv/bin/activate
9.
1
pip install flask
10.
1
vim hello.py
hoặc
1
gedit hello.py
11. Copy code dưới vào trong file hello.py
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
from flask import Flask
from flask import render_template
app = Flask(__name__)
app.debug = True


@app.route("/")
def hello():
    return render_template('hello.html', message="Hello World!")

if __name__ == "__main__":
    app.run(host='0.0.0.0', port=8080)
12.
1
python hello.py
13. Sau đó, bạn vào trình duyệt của bạn ý, gõ vào http://ipraspberry:8080. Trong đó ipraspberry chính là địa chỉ ip của Raspbbery của bạn nhé.

OK. Bài cũng dài, mình và các bạn sẽ sang bài kế nhé. 

Bài đăng phổ biến từ blog này

Stack And Queue Trong Python

[Raspberry] Raspberry Kết Nối Cảm Biến Độ Ẩm, Nhiệt Độ