ci(build): add gitignore
This commit is contained in:
parent
e2b102b208
commit
9accc34541
|
@ -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__/
|
||||
|
10
README.md
10
README.md
|
@ -11,7 +11,7 @@ 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 |
|
||||
|
||||
## 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:
|
||||
|
|
Loading…
Reference in New Issue