AIoT-Lecture14 practice (0517):
Project Goal
We are going to develop an AIoT web using Flask.
This course require student to use the vs code to develop our project and push their codes on th github.
- Register a github account (done)
- New an repository on the github
- Open VS code then git clone this repository
git clone https://github.com/vickychen928/AIoT-Lecture14.git
```text
echo "# 0517" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/vickychen928/AIoT-Lecture14.git
git push -u origin main
```