ci(build): add gitignore

This commit is contained in:
Eben Kouao 2021-10-29 15:54:30 +01:00
parent e2b102b208
commit 9accc34541
3 changed files with 55 additions and 3 deletions

BIN
.DS_Store vendored

Binary file not shown.

46
.gitignore vendored Normal file
View File

@ -0,0 +1,46 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# local env files
env
.env/
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
dev.env
# vercel
.vercel
#logs
*.log
#_pycache
__pycache__/

View File

@ -11,8 +11,8 @@ The Pi streams the output of the camera module over the web via Flask. Devices c
## Screenshots
| ![Setup](readme/pi-stream-client.jpg) | ![Live Pi Camera Stream](readme/pi-stream-screen-capture.jpg) |
|---|---|
| Pi Setup | Pi - Live Stream |
| ------------------------------------- | ------------------------------------------------------------- |
| Pi Setup | Pi - Live Stream |
## Preconditions
@ -42,7 +42,13 @@ sudo pip3 install opencv-python
```
pip3 install opencv-python
Note: This installation of opencv may take a while depending on your pi model.
OpenCV alternate installation (in the event of failed opencv builds):
```
sudo apt-get install libopencv-dev python3-opencv
```
## Step 1 Cloning Raspberry Pi Camera Stream
Open up terminal and clone the Camera Stream repo: